chore: split Decimal and RealParameters

This commit is contained in:
Matthias
2026-02-10 06:49:45 +01:00
parent cb1266225e
commit b52805cd96
+4 -1
View File
@@ -549,8 +549,11 @@ class RealParameter(__StrategyParameter):
high: float high: float
class DecimalParameter(RealParameter): class DecimalParameter(__StrategyParameter):
param_type: Literal["DecimalParameter"] param_type: Literal["DecimalParameter"]
value: float
low: float
high: float
decimals: int decimals: int