Skip to content

Commit

Permalink
formatting and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
firstof9 committed Dec 8, 2024
1 parent a897d3c commit 8a00ef5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions custom_components/openei/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from datetime import datetime, timedelta

import openeihttp
import os
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryNotReady
Expand Down Expand Up @@ -119,7 +118,7 @@ async def get_sensors(self) -> dict:
api = self._config.data.get(CONF_API_KEY)
plan = self._config.data.get(CONF_PLAN)
meter = self._config.data.get(CONF_SENSOR)
cache_file = f'.storage/openei_{self._config.entry_id}'
cache_file = f".storage/openei_{self._config.entry_id}"
reading = None

if self._config.data.get(CONF_MANUAL_PLAN):
Expand Down

0 comments on commit 8a00ef5

Please sign in to comment.