Invalidate the cached NetworkX graph after write operations.
(self)
| 177 | self._conn.commit() |
| 178 | |
| 179 | def _invalidate_cache(self) -> None: |
| 180 | """Invalidate the cached NetworkX graph after write operations.""" |
| 181 | with self._cache_lock: |
| 182 | self._nxg_cache = None |
| 183 | |
| 184 | def close(self) -> None: |
| 185 | self._conn.close() |
no outgoing calls
no test coverage detected