Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 20, 2025
1 parent b649356 commit 8fdc002
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion custom_components/lock_code_manager/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

from __future__ import annotations

from collections.abc import Iterable
import logging
import pkgutil
from typing import Any, Iterable
from typing import Any

import voluptuous as vol

Expand Down
3 changes: 2 additions & 1 deletion custom_components/lock_code_manager/providers/zwave_js.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

from __future__ import annotations

from collections.abc import Iterable
from dataclasses import dataclass, field
import logging
from typing import Any, Callable, Iterable
from typing import Any, Callable

from zwave_js_server.const.command_class.lock import ATTR_CODE_SLOT, ATTR_USERCODE
from zwave_js_server.const.command_class.notification import (
Expand Down
3 changes: 2 additions & 1 deletion custom_components/lock_code_manager/websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

from __future__ import annotations

from collections.abc import Coroutine
from functools import wraps
from typing import Any, Callable, Coroutine
from typing import Any, Callable

import voluptuous as vol

Expand Down

0 comments on commit 8fdc002

Please sign in to comment.