Skip to content

Commit 926b452

Browse files
committed
refactor: remove default values for inclusive bounds in ScoreCalibrationFunctionalClassification
1 parent 3f7051c commit 926b452

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mavedb/models/score_calibration_functional_classification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class ScoreCalibrationFunctionalClassification(Base):
4141
range = Column(JSONB(none_as_null=True), nullable=True) # (lower_bound, upper_bound)
4242
class_ = Column(String, nullable=True)
4343

44-
inclusive_lower_bound = Column(Boolean, nullable=True, default=True)
45-
inclusive_upper_bound = Column(Boolean, nullable=True, default=False)
44+
inclusive_lower_bound = Column(Boolean, nullable=True)
45+
inclusive_upper_bound = Column(Boolean, nullable=True)
4646

4747
oddspaths_ratio = Column(Float, nullable=True)
4848
positive_likelihood_ratio = Column(Float, nullable=True)

0 commit comments

Comments
 (0)