Skip to content

Commit

Permalink
Remove some unneeded pylint import-error disables (home-assistant#15386)
Browse files Browse the repository at this point in the history
  • Loading branch information
scop authored and fabaff committed Jul 9, 2018
1 parent 3b93fa8 commit 14a34f8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion homeassistant/components/device_tracker/mikrotik.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def __init__(self, config):

def connect_to_device(self):
"""Connect to Mikrotik method."""
# pylint: disable=import-error
import librouteros
try:
self.client = librouteros.connect(
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/eufy.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@

def setup(hass, config):
"""Set up Eufy devices."""
# pylint: disable=import-error
import lakeside

if CONF_USERNAME in config[DOMAIN] and CONF_PASSWORD in config[DOMAIN]:
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/light/eufy.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class EufyLight(Light):

def __init__(self, device):
"""Initialize the light."""
# pylint: disable=import-error
import lakeside

self._temp = None
Expand Down
1 change: 0 additions & 1 deletion homeassistant/components/switch/eufy.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class EufySwitch(SwitchDevice):

def __init__(self, device):
"""Initialize the light."""
# pylint: disable=import-error
import lakeside

self._state = None
Expand Down

0 comments on commit 14a34f8

Please sign in to comment.