Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bramstroker committed Jan 21, 2023
1 parent 2bd28da commit 9e4eca1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/measure/light_controller/hue.py
Expand Up @@ -70,7 +70,7 @@ def initialize_hue_bridge(self, bridge_ip: str) -> Bridge:
)
try:
bridge = Bridge(ip=bridge_ip, config_file_path=config_file_path)
except PhueRegistrationException as err:
except PhueRegistrationException:
print("Please click the link button on the bridge, than hit enter..")
input()
bridge = Bridge(ip=bridge_ip, config_file_path=config_file_path)
Expand Down
2 changes: 1 addition & 1 deletion utils/measure/media_controller/hass.py
Expand Up @@ -2,7 +2,7 @@

import inquirer
from homeassistant_api import Client
from homeassistant_api.errors import HomeassistantAPIError, UnauthorizedError
from homeassistant_api.errors import HomeassistantAPIError
from media_controller.errors import MediaPlayerError


Expand Down

0 comments on commit 9e4eca1

Please sign in to comment.