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