Skip to content

Commit

Permalink
for the security proposal remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jontofront committed Oct 4, 2024
1 parent 0ae6ce3 commit c69f780
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions custom_components/econet300/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from __future__ import annotations

import logging

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
Expand All @@ -16,8 +14,6 @@

PLATFORMS: list[Platform] = [Platform.SENSOR, Platform.BINARY_SENSOR, Platform.NUMBER]

_LOGGER = logging.getLogger(__name__)


async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up Econet300 Integration from a config entry."""
Expand All @@ -27,7 +23,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
cache = MemCache()

try:
_LOGGER.debug("entry.data contents: %s", entry.data)
data: dict[str, str] = dict(entry.data)
api = await make_api(hass, cache, data)

Expand Down

0 comments on commit c69f780

Please sign in to comment.