Skip to content

Commit c177c42

Browse files
committed
fix: add type hint for investigator_provided field in ScoreCalibration model
1 parent ecc2c70 commit c177c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mavedb/models/score_calibration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ScoreCalibration(Base):
3333
title = Column(String, nullable=False)
3434
research_use_only = Column(Boolean, nullable=False, default=False)
3535
primary = Column(Boolean, nullable=False, default=False)
36-
investigator_provided = Column(Boolean, nullable=False, default=False)
36+
investigator_provided: Mapped[bool] = Column(Boolean, nullable=False, default=False)
3737
private = Column(Boolean, nullable=False, default=True)
3838
notes = Column(String, nullable=True)
3939

0 commit comments

Comments
 (0)