From d97b6bef276a0f32b301ac01c8d966a3ffcbe53e Mon Sep 17 00:00:00 2001 From: ovirs Date: Mon, 11 Nov 2019 00:01:39 -0500 Subject: [PATCH] fix annotation (#3) --- pyvivint/devices/alarm_panel.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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',