Retrieve an auth scheme by key.
(self, key: str)
| 50 | self._store[key] = auth |
| 51 | |
| 52 | def get(self, key: str) -> ClientAuthScheme | None: |
| 53 | """Retrieve an auth scheme by key.""" |
| 54 | with self._lock: |
| 55 | return self._store.get(key) |
| 56 | |
| 57 | def __setitem__(self, key: str, value: ClientAuthScheme | None) -> None: |
| 58 | with self._lock: |
no outgoing calls