(self)
| 118 | |
| 119 | @property |
| 120 | def _conn(self) -> sqlite3.Connection: |
| 121 | # Inherited read-only Store methods use ``self._conn``. Route them |
| 122 | # through the current thread's underlying Store connection. |
| 123 | return self._store()._conn |
| 124 | |
| 125 | def _store(self) -> Store: |
| 126 | if self._closed: |