Skip to content

Commit

Permalink
fix annotation (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ovirs authored Nov 11, 2019
1 parent c895004 commit d97b6be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyvivint/devices/alarm_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async def arm_away(self) -> None:
"""Set the alarm to armed away."""
await self.set_armed_state(ArmedStates.ArmedAway)

def get_devices(self, device_types: Set(int) = None, include_unknown_devices: bool = False) -> List[VivintDevice]:
def get_devices(self, device_types: Set[int] = None, include_unknown_devices: bool = False) -> List[VivintDevice]:
"""Get a list of associated devices."""
devices = self.devices

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

setup(
name='pyvivint',
version='0.1.3',
version='0.1.5',
description='Python module to interact with VivintSky API.',
long_description=open('README.md').read(),
author='Ovidiu Stateina',
Expand Down

0 comments on commit d97b6be

Please sign in to comment.