Skip to content

Commit

Permalink
mypy hint
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Jun 26, 2024
1 parent 9e5cd09 commit 9735bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/ramses_cc/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from copy import deepcopy
from typing import Any, Final

import voluptuous as vol # type: ignore[import-untyped]
import voluptuous as vol # type: ignore[import-untyped, unused-ignore]
from homeassistant.components import usb
from homeassistant.config_entries import (
ConfigEntry,
Expand All @@ -20,7 +20,7 @@
from homeassistant.data_entry_flow import FlowHandler, FlowResult
from homeassistant.helpers import config_validation as cv, selector
from homeassistant.helpers.storage import Store
from serial.tools import list_ports # type: ignore[import-untyped, unused-ignore]
from serial.tools import list_ports # type: ignore[import-untyped]

from ramses_rf.schemas import (
SCH_GATEWAY_DICT,
Expand Down

0 comments on commit 9735bab

Please sign in to comment.