File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11# EAS Python client
22## [ 0.19.0] - UNRELEASED
33### Breaking Changes
4- * None .
4+ * ` FixedTimeLoadOverride ` now takes in optional list of floats instead of optional float for its variable .
55
66### New Features
77* None.
Original file line number Diff line number Diff line change @@ -69,24 +69,24 @@ class SwitchMeterPlacementConfig:
6969
7070@dataclass
7171class FixedTimeLoadOverride :
72- load_watts : Optional [float ]
72+ load_watts : Optional [List [ float ] ]
7373 """
74- The reading to be used to override load watts
74+ The readings to be used to override load watts
7575 """
7676
77- gen_watts : Optional [float ]
77+ gen_watts : Optional [List [ float ] ]
7878 """
79- The reading to be used to override gen watts
79+ The readings to be used to override gen watts
8080 """
8181
82- load_var : Optional [float ]
82+ load_var : Optional [List [ float ] ]
8383 """
84- The reading to be used to override load var
84+ The readings to be used to override load var
8585 """
8686
87- gen_var : Optional [float ]
87+ gen_var : Optional [List [ float ] ]
8888 """
89- The reading to be used to override gen var
89+ The readings to be used to override gen var
9090 """
9191
9292 # def __str__(self):
You can’t perform that action at this time.
0 commit comments