We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a9228 commit a29197cCopy full SHA for a29197c
custom_components/victron/config_flow.py
@@ -299,7 +299,6 @@ class VictronOptionFlowHandler(config_entries.OptionsFlow):
299
300
def __init__(self, config_entry: ConfigEntry) -> None:
301
"""Initialize options flow."""
302
- self.config_entry = config_entry
303
self.area = None
304
305
async def async_step_advanced(self, user_input=None):
custom_components/victron/number.py
@@ -125,7 +125,7 @@ def determine_min_value(
125
)
126
if powerType == "AC"
127
else (
128
- int(config_entry[CONF_DC_SYSTEM_VOLTAGE].dc_voltage)
+ int(config_entry[CONF_DC_SYSTEM_VOLTAGE])
129
* config_entry[CONF_DC_CURRENT_LIMIT]
130
131
0 commit comments