1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Cleanup unused loggers (components N-Z + tests) (#41982)

This commit is contained in:
Philip Allgaier
2020-10-17 04:24:08 +02:00
committed by GitHub
parent ad6ce5fa83
commit dde6305549
326 changed files with 84 additions and 1156 deletions

View File

@@ -1,7 +1,6 @@
"""Test the bootstrapping."""
# pylint: disable=protected-access
import asyncio
import logging
import os
from unittest.mock import Mock
@@ -25,8 +24,6 @@ from tests.common import (
ORIG_TIMEZONE = dt_util.DEFAULT_TIME_ZONE
VERSION_PATH = os.path.join(get_test_config_dir(), config_util.VERSION_FILE)
_LOGGER = logging.getLogger(__name__)
@pytest.fixture(autouse=True)
def apply_mock_storage(hass_storage):