(self)
| 1363 | |
| 1364 | @API.expose |
| 1365 | def db_ready(self) -> bool: |
| 1366 | with self._db_lock: |
| 1367 | try: |
| 1368 | return self.db is not None |
| 1369 | except MgrDBNotReady: |
| 1370 | return False |
| 1371 | |
| 1372 | @property |
| 1373 | def db(self) -> sqlite3.Connection: |
no outgoing calls
no test coverage detected