diff --git a/pyvivint/devices/alarm_panel.py b/pyvivint/devices/alarm_panel.py index 08cb7db..9244046 100644 --- a/pyvivint/devices/alarm_panel.py +++ b/pyvivint/devices/alarm_panel.py @@ -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 diff --git a/setup.py b/setup.py index dc0840e..0cff7ee 100644 --- a/setup.py +++ b/setup.py @@ -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',