Skip to content

Commit

Permalink
Merge pull request #117 from wwelles/patch-1
Browse files Browse the repository at this point in the history
fix(GoveeErrors namespace): Import GoveeError from `govee_api_laggat`
  • Loading branch information
LaggAt authored Nov 19, 2023
2 parents a7ccc3f + 2637464 commit 159fe68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions custom_components/govee/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

import logging

from govee_api_laggat import Govee, GoveeNoLearningStorage
from govee_api_laggat.govee_errors import GoveeError
from govee_api_laggat import Govee, GoveeNoLearningStorage, GoveeError

from homeassistant import config_entries, core, exceptions
import homeassistant.helpers.config_validation as cv
Expand Down
3 changes: 1 addition & 2 deletions custom_components/govee/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
from datetime import timedelta, datetime
import logging

from govee_api_laggat import Govee, GoveeDevice
from govee_api_laggat import Govee, GoveeDevice, GoveeError
from govee_api_laggat.govee_dtos import GoveeSource
from govee_api_laggat.govee_errors import GoveeError

from homeassistant.components.light import (
ATTR_BRIGHTNESS,
Expand Down

0 comments on commit 159fe68

Please sign in to comment.