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
1 change: 0 additions & 1 deletion custom_components/victron/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@ class VictronOptionFlowHandler(config_entries.OptionsFlow):

def __init__(self, config_entry: ConfigEntry) -> None:
"""Initialize options flow."""
self.config_entry = config_entry
self.area = None

async def async_step_advanced(self, user_input=None):
Expand Down
2 changes: 1 addition & 1 deletion custom_components/victron/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def determine_min_value(
)
if powerType == "AC"
else (
int(config_entry[CONF_DC_SYSTEM_VOLTAGE].dc_voltage)
int(config_entry[CONF_DC_SYSTEM_VOLTAGE])
* config_entry[CONF_DC_CURRENT_LIMIT]
)
)
Expand Down
Loading