Skip to content

Commit

Permalink
Fix bug where VSP not configured
Browse files Browse the repository at this point in the history
Reinstate return default to "temporary" `vsp_speed` pop. Looks like it was accidentally lost in a previous patch...
  • Loading branch information
mk-french committed Sep 22, 2022
1 parent e323f0e commit 9e320bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name="iaqualink",
version="0.5.2",
version="0.5.3",
description="Asynchronous library for Jandy iAqualink",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/iaqualink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = "Florent Thoumie"
__email__ = "[email protected]"
__version__ = "0.5.0"
__version__ = "0.5.3"
2 changes: 1 addition & 1 deletion src/iaqualink/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ async def _parse_shadow_response(
except:
pass
devices.update({name: attrs})
devices.pop("vsp_speed") # temp remove until can handle dictionary
devices.pop("vsp_speed", None) # temp remove until can handle dictionary

# Process the heating control attributes if they exist
if ('heating' in data["state"]["reported"]):
Expand Down

0 comments on commit 9e320bf

Please sign in to comment.