(session, parsed_args, **kwargs)
| 227 | |
| 228 | |
| 229 | def no_pager_handler(session, parsed_args, **kwargs): |
| 230 | if parsed_args.no_cli_pager: |
| 231 | config_store = session.get_component('config_store') |
| 232 | config_store.set_config_provider('pager', ConstantProvider(value=None)) |
| 233 | |
| 234 | |
| 235 | class AWSCLIEntryPoint: |
nothing calls this directly
no test coverage detected