()
| 611 | |
| 612 | |
| 613 | def open_auth_db() -> sqlite3.Connection: |
| 614 | connection = sqlite3.connect(AUTH_DB_PATH) |
| 615 | connection.row_factory = sqlite3.Row |
| 616 | return connection |
| 617 | |
| 618 | |
| 619 | def list_pending_device_approvals(limit: int = 20) -> list[dict[str, Any]]: |
no outgoing calls
no test coverage detected