(name: str)
| 52 | |
| 53 | |
| 54 | def check_identifier(name: str) -> None: |
| 55 | if not name.isidentifier(): |
| 56 | raise ValueError(f'{name!r} is not an identifier') |
| 57 | |
| 58 | |
| 59 | def connect(db_path: str = DEFAULT_DB_PATH) -> sqlite3.Connection: |
no outgoing calls
no test coverage detected