(authconfig, registry)
| 67 | |
| 68 | |
| 69 | def get_credential_store(authconfig, registry): |
| 70 | if not isinstance(authconfig, AuthConfig): |
| 71 | authconfig = AuthConfig(authconfig) |
| 72 | return authconfig.get_credential_store(registry) |
| 73 | |
| 74 | |
| 75 | class AuthConfig(dict): |
nothing calls this directly
no test coverage detected