Skip to content

Commit

Permalink
fix: remove async from source get
Browse files Browse the repository at this point in the history
  • Loading branch information
noahhusby committed Jul 22, 2024
1 parent 919f61e commit e202050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiorussound/rio.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ async def send_event(self, event_name, *args):
)
return await self.instance._send_cmd(cmd)

async def _get(self, variable):
def _get(self, variable):
return self.instance.get_cached_variable(self.device_str(), variable)

@property
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='aiorussound',
version='2.0.2',
version='2.0.3',
packages=['aiorussound'],
license='MIT',
author='Noah Husby',
Expand Down

0 comments on commit e202050

Please sign in to comment.