From c60bb35d4ae7a277117b490ad37e7f000479ca67 Mon Sep 17 00:00:00 2001 From: Daren Lord Date: Thu, 12 Nov 2015 23:40:30 -0700 Subject: [PATCH] Fixed lint errors --- homeassistant/components/device_tracker/icloud.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/device_tracker/icloud.py b/homeassistant/components/device_tracker/icloud.py index f193e68bc22..f4b3998ab40 100644 --- a/homeassistant/components/device_tracker/icloud.py +++ b/homeassistant/components/device_tracker/icloud.py @@ -30,7 +30,6 @@ REQUIREMENTS = ['https://github.com/picklepete/pyicloud/archive/' 'certifi'] -#pylint: disable=unused-argument def get_scanner(hass, config): """ Validates config and returns a iPhone Scanner. """ if not validate_config(config, @@ -64,7 +63,9 @@ class ICloudDeviceScanner(object): # Get the data from iCloud try: _LOGGER.info('Logging into iCloud Services') - self._api = PyiCloudService(self.username, self.password, verify=True) + self._api = PyiCloudService(self.username, + self.password, + verify=True) except PyiCloudFailedLoginException: _LOGGER.exception("Failed login to iCloud Service." + "Verify Username and Password") @@ -119,7 +120,9 @@ class ICloudDeviceScanner(object): for device in self._api.devices: try: devices[device.status()['name']] = { - 'device_id': re.sub(r'(\s*|\W*)', device.status()['name'], ''), + 'device_id': re.sub(r'(\s*|\W*)', + device.status()['name'], + ''), 'host_name': device.status()['name'], 'gps': (device.location()['latitude'], device.location()['longitude']), @@ -128,4 +131,4 @@ class ICloudDeviceScanner(object): except TypeError: # Device is not tracked. continue - return devices \ No newline at end of file + return devices