Skip to content

Commit 236a31a

Browse files
committed
mypy
1 parent 7e5c626 commit 236a31a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/tests/unit/file_store/test_file_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def db_session() -> Generator[Session, None, None]:
2828
"""Create an in-memory SQLite database for testing"""
2929
# Create test-specific base and model that matches the actual FileRecord structure
3030
# but uses SQLite-compatible types
31-
TestDBBase = declarative_base()
31+
TestDBBase = declarative_base() # type: ignore
3232

3333
class FileRecord(TestDBBase): # type: ignore
3434
__tablename__: str = "file_record"

0 commit comments

Comments
 (0)