Skip to content

Commit

Permalink
fix: use enum instead of backports
Browse files Browse the repository at this point in the history
  • Loading branch information
akloeckner committed Sep 8, 2024
1 parent cc5cd00 commit b78ae30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/hafas/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

import logging
from typing import Any
from enum import StrEnum

from pyhafas import HafasClient
from pyhafas.profile import DBProfile, KVBProfile, VSNProfile
from pyhafas.types.fptf import Station
import voluptuous as vol

from homeassistant import config_entries
from homeassistant.backports.enum import StrEnum
from homeassistant.const import CONF_OFFSET
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResult
Expand Down

0 comments on commit b78ae30

Please sign in to comment.