Cleanup unused loggers (components A-M) (#41600)

This commit is contained in:
Philip Allgaier
2020-10-12 16:59:05 +02:00
committed by GitHub
parent 9e6df38994
commit 625bbe6238
251 changed files with 16 additions and 891 deletions

View File

@@ -1,5 +1,4 @@
"""Example auth module."""
import logging
from typing import Any, Dict
import voluptuous as vol
@@ -22,8 +21,6 @@ CONFIG_SCHEMA = MULTI_FACTOR_AUTH_MODULE_SCHEMA.extend(
extra=vol.PREVENT_EXTRA,
)
_LOGGER = logging.getLogger(__name__)
@MULTI_FACTOR_AUTH_MODULES.register("insecure_example")
class InsecureExampleModule(MultiFactorAuthModule):