(param_objects, token_name)
| 338 | |
| 339 | |
| 340 | def _get_cli_name(param_objects, token_name): |
| 341 | for param in param_objects: |
| 342 | if param.name == token_name: |
| 343 | return param.cli_name.lstrip('-') |
| 344 | |
| 345 | |
| 346 | # This function checks for pagination args in the actual calling |