Skip to content

Commit 1a2b2cf

Browse files
saitcakmakmeta-codesync[bot]
authored andcommitted
Add step size to SQAParameter class (#5212)
Summary: Pull Request resolved: #5212 Just adds the field to the SQAParameter class to help with testing. The remaining plumbing will be done as part of the diff that adds the attribute to the RangeParameter class. Reviewed By: dme65 Differential Revision: D107108021 fbshipit-source-id: 0acc2c0cf65aca85e45c73f7a4244fadba97f215
1 parent 0e17ffe commit 1a2b2cf

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

ax/storage/sqa_store/sqa_classes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ class SQAParameter(Base):
102102

103103
# Attributes for Range Parameters
104104
digits: Mapped[int | None] = Column(Integer)
105+
step_size: Mapped[float | None] = Column(Float)
105106
log_scale: Mapped[bool | None] = Column(Boolean)
106107
lower: Mapped[Decimal | None] = Column(Float)
107108
upper: Mapped[Decimal | None] = Column(Float)

0 commit comments

Comments
 (0)