Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
import threading

from typing import Optional, List, Dict, Any # noqa #pylint: disable=unused-import
from typing import List, Dict, Any # noqa pylint: disable=unused-import


from homeassistant import monkey_patch
Expand Down
5 changes: 0 additions & 5 deletions homeassistant/helpers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@

from homeassistant.const import CONF_PLATFORM

# Typing Imports and TypeAlias
# pylint: disable=using-constant-test,unused-import
if False:
from logging import Logger # NOQA

# pylint: disable=invalid-name
ConfigType = Dict[str, Any]

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from types import ModuleType

# pylint: disable=unused-import
from typing import Dict, List, Optional, Sequence, Set, TYPE_CHECKING # NOQA
from typing import Optional, Set, TYPE_CHECKING # NOQA

from homeassistant.const import PLATFORM_FORMAT
from homeassistant.util import OrderedSet
Expand Down