chore: split Decimal and RealParameters

pull/12808/head
Matthias 2 months ago
parent cb1266225e
commit b52805cd96

@ -549,8 +549,11 @@ class RealParameter(__StrategyParameter):
high: float
class DecimalParameter(RealParameter):
class DecimalParameter(__StrategyParameter):
param_type: Literal["DecimalParameter"]
value: float
low: float
high: float
decimals: int

Loading…
Cancel
Save