Run argument parsing for all argument groups. Args: args (Namespace): The namespace returned by ``parse_args()`` or ``parse_known_args()``.
(self, args)
| 143 | subtool.setup_parser(subparsers) |
| 144 | |
| 145 | def parse(self, args): |
| 146 | """ |
| 147 | Run argument parsing for all argument groups. |
| 148 | |
| 149 | Args: |
| 150 | args (Namespace): |
| 151 | The namespace returned by ``parse_args()`` or ``parse_known_args()``. |
| 152 | """ |
| 153 | for arg_group in self.arg_groups.values(): |
| 154 | arg_group.parse(args) |
| 155 | |
| 156 | # Implementation for `run`. This should be implemented by child classes instead of `run` |
| 157 | def run_impl(self, args): |
no test coverage detected