You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I saw this issue too as I started using this last night.
I edited coordinator.py to have the klipper check inside it's own try/except:
try:
klipper_url = config.get(KLIPPER_URL, "")
if klipper_url is not None and klipper_url != "":
klipper_active_spool: int | None = await KlipperAPI(klipper_url).get_active_spool_id()
if klipper_active_spool is not None:
for spool in spools:
if spool["id"] == klipper_active_spool:
spool["klipper_active_spool"] = True
else:
spool["klipper_active_spool"] = False
except Exception as exception:
print("klipper api error")
I saw this issue too as I started using this last night.
I edited coordinator.py to have the klipper check inside it's own try/except:
Originally posted by @floyduww in #135 (comment)
The text was updated successfully, but these errors were encountered: