Skip to content

Commit

Permalink
More code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelarnauts committed Jun 17, 2015
1 parent c77dbaa commit e514723
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/device_tracker/tplink.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, config):
host = config[CONF_HOST]
username, password = config[CONF_USERNAME], config[CONF_PASSWORD]

self.parse_macs = re.compile('[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-'+
self.parse_macs = re.compile('[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}-' +
'[0-9A-F]{2}-[0-9A-F]{2}-[0-9A-F]{2}')

self.host = host
Expand All @@ -89,7 +89,7 @@ def scan_devices(self):
return self.last_results

def get_device_name(self, device):
""" The TP-Link firmware doesn't save the name of the wireless
""" The TP-Link firmware doesn't save the name of the wireless
device. """

return None
Expand Down

0 comments on commit e514723

Please sign in to comment.