Skip to content

Commit

Permalink
Adapt to mypy 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
emontnemery committed Nov 5, 2023
1 parent a705933 commit 24dec8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hatasmota/config_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from typing import Any, TypeVar

import voluptuous as vol # type:ignore[import]
import voluptuous as vol # type:ignore[import-not-found]

# typing typevar
T = TypeVar("T") # pylint: disable=invalid-name
Expand Down
2 changes: 1 addition & 1 deletion hatasmota/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import json
import logging

import voluptuous as vol # type:ignore[import]
import voluptuous as vol # type:ignore[import-not-found]

from . import config_validation as cv
from .button import TasmotaButtonTrigger, TasmotaButtonTriggerConfig
Expand Down

0 comments on commit 24dec8f

Please sign in to comment.