Skip to content

Commit

Permalink
Remove some unused imports (#18732)
Browse files Browse the repository at this point in the history
  • Loading branch information
scop authored and balloob committed Nov 27, 2018
1 parent b4e2f2a commit 7248c9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion homeassistant/auth/mfa_modules/notify.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""
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
Expand Down
3 changes: 1 addition & 2 deletions homeassistant/auth/permissions/entities.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 1 addition & 2 deletions homeassistant/auth/permissions/types.py
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit 7248c9c

Please sign in to comment.