(self, session)
| 58 | _CRT_PROCESS_LOCK_NAME = 'aws-cli' |
| 59 | |
| 60 | def __init__(self, session): |
| 61 | self._session = session |
| 62 | self._botocore_client_factory = ClientFactory(self._session) |
| 63 | |
| 64 | def create_transfer_manager( |
| 65 | self, params, runtime_config, botocore_client=None |
nothing calls this directly
no test coverage detected