Skip to content

Commit

Permalink
fix self-import in utils
Browse files Browse the repository at this point in the history
  • Loading branch information
steersbob committed Feb 15, 2024
1 parent 87b990a commit 90fe69a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions brewblox_history/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import ciso8601
from pytimeparse.timeparse import timeparse

from . import utils
from .models import ServiceConfig

LOGGER = logging.getLogger(__name__)
Expand Down Expand Up @@ -137,7 +136,7 @@ def select_timeframe(start: DatetimeSrc_,
`duration` is formatted as `{value}s`.
"""
config = utils.get_config()
config = get_config()
dt_start: datetime | None = None
dt_end: datetime | None = None

Expand Down

0 comments on commit 90fe69a

Please sign in to comment.