From 57b05daad7c3af7582bd8f558d81e1cc23ac0aec Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Fri, 1 Mar 2019 21:40:27 -0500 Subject: [PATCH] Remove throttle from network_status --- blinkpy/helpers/constants.py | 4 ++-- blinkpy/sync_module.py | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/blinkpy/helpers/constants.py b/blinkpy/helpers/constants.py index f880239..585d5a1 100644 --- a/blinkpy/helpers/constants.py +++ b/blinkpy/helpers/constants.py @@ -3,8 +3,8 @@ import os MAJOR_VERSION = 0 -MINOR_VERSION = 14 -PATCH_VERSION = '0.dev0' +MINOR_VERSION = 13 +PATCH_VERSION = '1.dev0' __version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) diff --git a/blinkpy/sync_module.py b/blinkpy/sync_module.py index 01e88fc..51d4607 100644 --- a/blinkpy/sync_module.py +++ b/blinkpy/sync_module.py @@ -64,7 +64,10 @@ class BlinkSyncModule(): @property def arm(self): """Return status of sync module: armed/disarmed.""" - return self.network_info['network']['armed'] + try: + return self.network_info['network']['armed'] + except (KeyError, TypeError): + return None @arm.setter def arm(self, value):