Remove some unused imports (#18732)

This commit is contained in:
Ville Skyttä 2018-11-27 10:35:35 +02:00 committed by Paulus Schoutsen
parent b4e2f2a6ef
commit 7248c9cb0e
3 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -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.