(self, storage: ConnectionsStorage | None = None)
| 112 | |
| 113 | class ConnectionsStore: |
| 114 | def __init__(self, storage: ConnectionsStorage | None = None) -> None: |
| 115 | self._storage = storage or FileConnectionsStorage() |
| 116 | self._primary = _sanitize_primary(self._storage.load()) |
| 117 | |
| 118 | def primary(self) -> PrimaryConnection: |
| 119 | return self._primary |
nothing calls this directly
no test coverage detected