Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Nov 20, 2023
1 parent c8f45ae commit a00b80b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/hon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
from pathlib import Path

import voluptuous as vol # type: ignore[import]
import voluptuous as vol # type: ignore[import-untyped]
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
from homeassistant.helpers import config_validation as cv, aiohttp_client
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hon/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
from typing import Any

import voluptuous as vol # type: ignore[import]
import voluptuous as vol # type: ignore[import-untyped]
from homeassistant import config_entries
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
from homeassistant.data_entry_flow import FlowResult
Expand Down
1 change: 0 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ black>=22.12
flake8>=6.0
mypy>=0.991
pylint>=2.15
setuptools>=62.3

0 comments on commit a00b80b

Please sign in to comment.