(self)
| 99 | self._cache_dir.mkdir(parents=True, exist_ok=True) |
| 100 | |
| 101 | def _ensure_database_setup(self): |
| 102 | self._create_session_table() |
| 103 | self._create_host_id_table() |
| 104 | self._ensure_host_id() |
| 105 | self._try_to_enable_wal() |
| 106 | |
| 107 | def _create_session_table(self): |
| 108 | self.execute(self._CREATE_TABLE) |
no test coverage detected