Cleanup unused loggers (#46510)

This commit is contained in:
tkdrob 2021-02-14 07:46:58 -05:00 committed by GitHub
parent 10e88cd23d
commit a5a45f29e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 0 additions and 223 deletions

View file

@ -1,7 +1,6 @@
"""Tests for the Hyperion component."""
from __future__ import annotations
import logging
from types import TracebackType
from typing import Any, Dict, Optional, Type
from unittest.mock import AsyncMock, Mock, patch
@ -63,8 +62,6 @@ TEST_AUTH_NOT_REQUIRED_RESP = {
"info": {"required": False},
}
_LOGGER = logging.getLogger(__name__)
class AsyncContextManagerMock(Mock):
"""An async context manager mock for Hyperion."""