()
| 56 | |
| 57 | |
| 58 | def init_db() -> sqlite3.Connection: |
| 59 | conn = sqlite3.connect(DB_PATH) |
| 60 | conn.row_factory = sqlite3.Row |
| 61 | return conn |
| 62 | |
| 63 | |
| 64 | def paper_exists(conn: sqlite3.Connection, paper_id: str, source: str) -> bool: |
no outgoing calls
no test coverage detected