We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e5c626 commit 236a31aCopy full SHA for 236a31a
backend/tests/unit/file_store/test_file_store.py
@@ -28,7 +28,7 @@ def db_session() -> Generator[Session, None, None]:
28
"""Create an in-memory SQLite database for testing"""
29
# Create test-specific base and model that matches the actual FileRecord structure
30
# but uses SQLite-compatible types
31
- TestDBBase = declarative_base()
+ TestDBBase = declarative_base() # type: ignore
32
33
class FileRecord(TestDBBase): # type: ignore
34
__tablename__: str = "file_record"
0 commit comments