mirror of
https://github.com/home-assistant/core.git
synced 2025-04-22 16:27:56 +00:00
Remove some unused imports (#18732)
This commit is contained in:
parent
b4e2f2a6ef
commit
7248c9cb0e
@ -4,7 +4,7 @@ Sending HOTP through notify service
|
||||
"""
|
||||
import logging
|
||||
from collections import OrderedDict
|
||||
from typing import Any, Dict, Optional, Tuple, List # noqa: F401
|
||||
from typing import Any, Dict, Optional, List
|
||||
|
||||
import attr
|
||||
import voluptuous as vol
|
||||
|
@ -1,7 +1,6 @@
|
||||
"""Entity permissions."""
|
||||
from functools import wraps
|
||||
from typing import ( # noqa: F401
|
||||
Callable, Dict, List, Tuple, Union)
|
||||
from typing import Callable, List, Union # noqa: F401
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
"""Common code for permissions."""
|
||||
from typing import ( # noqa: F401
|
||||
Mapping, Union, Any)
|
||||
from typing import Mapping, Union
|
||||
|
||||
# MyPy doesn't support recursion yet. So writing it out as far as we need.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user