Skip to content

Commit

Permalink
Fix silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmarks committed Sep 15, 2020
1 parent da00ef8 commit 8c9cfce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gekitchen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""GE Kitchen Appliances SDK"""

__version__ = "0.2.15"
__version__ = "0.2.16"


from .async_login_flow import (
Expand Down
2 changes: 1 addition & 1 deletion gekitchen/ge_appliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __new__(cls, mac_addr: Union[str, JID], client: "GeBaseClient", *args, **kwa
try:
obj = cls._appliance_cache[mac_addr] # type: "GeAppliance"
except KeyError:
obj = super(GeAppliance, cls).__new__(cls, mac_addr, client, *args, **kwargs)
obj = super(GeAppliance, cls).__new__(cls)
obj.__init__(mac_addr, client)
cls._appliance_cache[obj.mac_addr] = obj
return obj
Expand Down

0 comments on commit 8c9cfce

Please sign in to comment.