Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# EAS Python client
## [0.19.0] - UNRELEASED
### Breaking Changes
* None.
* `FixedTimeLoadOverride` now takes in optional list of floats instead of optional float for its variable.

### New Features
* None.
Expand Down
16 changes: 8 additions & 8 deletions src/zepben/eas/client/work_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,24 +69,24 @@ class SwitchMeterPlacementConfig:

@dataclass
class FixedTimeLoadOverride:
load_watts: Optional[float]
load_watts: Optional[List[float]]
"""
The reading to be used to override load watts
The readings to be used to override load watts
"""

gen_watts: Optional[float]
gen_watts: Optional[List[float]]
"""
The reading to be used to override gen watts
The readings to be used to override gen watts
"""

load_var: Optional[float]
load_var: Optional[List[float]]
"""
The reading to be used to override load var
The readings to be used to override load var
"""

gen_var: Optional[float]
gen_var: Optional[List[float]]
"""
The reading to be used to override gen var
The readings to be used to override gen var
"""

# def __str__(self):
Expand Down