Clean up unused ipp logger (#55039)

This commit is contained in:
Robert Hillis 2021-08-22 20:44:23 -04:00 committed by GitHub
parent 5f5c8ade41
commit 87d52cd2d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,6 @@
"""The Internet Printing Protocol (IPP) integration."""
from __future__ import annotations
import logging
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_HOST, CONF_PORT, CONF_SSL, CONF_VERIFY_SSL
@ -13,8 +11,6 @@ from .coordinator import IPPDataUpdateCoordinator
PLATFORMS = [SENSOR_DOMAIN]
_LOGGER = logging.getLogger(__name__)
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up IPP from a config entry."""