Skip to content

Commit 53539ad

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c5290a9 commit 53539ad

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

custom_components/lock_code_manager/config_flow.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
from __future__ import annotations
44

5+
from collections.abc import Iterable
56
import logging
67
import pkgutil
7-
from typing import Any, Iterable
8+
from typing import Any
89

910
import voluptuous as vol
1011

custom_components/lock_code_manager/providers/zwave_js.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33
from __future__ import annotations
44

5+
from collections.abc import Iterable
56
from dataclasses import dataclass, field
67
import logging
7-
from typing import Any, Callable, Iterable
8+
from typing import Any, Callable
89

910
from zwave_js_server.const.command_class.lock import ATTR_CODE_SLOT, ATTR_USERCODE
1011
from zwave_js_server.const.command_class.notification import (

custom_components/lock_code_manager/websocket.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
from __future__ import annotations
44

5+
from collections.abc import Coroutine
56
from functools import wraps
6-
from typing import Any, Callable, Coroutine
7+
from typing import Any, Callable
78

89
import voluptuous as vol
910

0 commit comments

Comments
 (0)