(store: Store)
| 23 | |
| 24 | |
| 25 | def _select_all_configs(store: Store) -> list[str]: |
| 26 | with store.connect() as db: |
| 27 | rows = db.execute('SELECT * FROM configs').fetchall() |
| 28 | return [path for path, in rows] |
| 29 | |
| 30 | |
| 31 | def _select_all_repos(store: Store) -> list[tuple[str, str, str]]: |
no test coverage detected