(authconfig, registry=None, credstore_env=None)
| 307 | |
| 308 | |
| 309 | def resolve_authconfig(authconfig, registry=None, credstore_env=None): |
| 310 | if not isinstance(authconfig, AuthConfig): |
| 311 | authconfig = AuthConfig(authconfig, credstore_env) |
| 312 | return authconfig.resolve_authconfig(registry) |
| 313 | |
| 314 | |
| 315 | def convert_to_hostname(url): |
no test coverage detected