mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 09:17:10 +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
|
import logging
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from typing import Any, Dict, Optional, Tuple, List # noqa: F401
|
from typing import Any, Dict, Optional, List
|
||||||
|
|
||||||
import attr
|
import attr
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
"""Entity permissions."""
|
"""Entity permissions."""
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
from typing import ( # noqa: F401
|
from typing import Callable, List, Union # noqa: F401
|
||||||
Callable, Dict, List, Tuple, Union)
|
|
||||||
|
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
"""Common code for permissions."""
|
"""Common code for permissions."""
|
||||||
from typing import ( # noqa: F401
|
from typing import Mapping, Union
|
||||||
Mapping, Union, Any)
|
|
||||||
|
|
||||||
# MyPy doesn't support recursion yet. So writing it out as far as we need.
|
# MyPy doesn't support recursion yet. So writing it out as far as we need.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user