We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d353d commit 672873fCopy full SHA for 672873f
custom_components/fronius_local/__init__.py
@@ -39,7 +39,7 @@ async def async_setup_entry(
39
entry.runtime_data = FroniusData(
40
client=FroniusApiClient(
41
hass=hass,
42
- url=entry.data[CONF_URL].strip(),
+ url=entry.data[CONF_URL],
43
passwd=entry.data[CONF_PASSWORD],
44
),
45
integration=async_get_loaded_integration(hass, entry.domain),
custom_components/fronius_local/api.py
@@ -8,7 +8,6 @@
8
from homeassistant.helpers import httpx_client
9
10
from . import auth
11
-from . import const as fl
12
13
if TYPE_CHECKING:
14
from homeassistant.core import HomeAssistant
0 commit comments