(folder_path: Path, filename: str)
| 148 | |
| 149 | |
| 150 | def check_file_exists(folder_path: Path, filename: str) -> bool: |
| 151 | return (folder_path / filename).exists() |
| 152 | |
| 153 | |
| 154 | def get_or_create_function(cursor: sqlite3.Cursor, func_tuple: tuple) -> int: |
no outgoing calls
no test coverage detected