Skip to content

Commit a00b80b

Browse files
committed
Fix mypy errors
1 parent c8f45ae commit a00b80b

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

custom_components/hon/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
from pathlib import Path
33

4-
import voluptuous as vol # type: ignore[import]
4+
import voluptuous as vol # type: ignore[import-untyped]
55
from homeassistant.config_entries import ConfigEntry
66
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
77
from homeassistant.helpers import config_validation as cv, aiohttp_client

custom_components/hon/config_flow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
from typing import Any
33

4-
import voluptuous as vol # type: ignore[import]
4+
import voluptuous as vol # type: ignore[import-untyped]
55
from homeassistant import config_entries
66
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
77
from homeassistant.data_entry_flow import FlowResult

requirements_dev.txt

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ black>=22.12
22
flake8>=6.0
33
mypy>=0.991
44
pylint>=2.15
5-
setuptools>=62.3

0 commit comments

Comments
 (0)