Skip to content

Commit

Permalink
Remove unused set.
Browse files Browse the repository at this point in the history
  • Loading branch information
denpamusic committed Jan 28, 2025
1 parent 46aa222 commit 8903aae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pyplumio/helpers/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import asyncio
from dataclasses import dataclass
import logging
from typing import TYPE_CHECKING, Any, Final, Literal, TypeVar, Union, get_args
from typing import TYPE_CHECKING, Any, Literal, TypeVar, Union, get_args

from dataslots import dataslots
from typing_extensions import TypeAlias
Expand All @@ -19,8 +19,6 @@

_LOGGER = logging.getLogger(__name__)

_VALID_STATES: Final = {STATE_ON, STATE_OFF}

NumericType: TypeAlias = Union[int, float]
State: TypeAlias = Literal["on", "off"]
ParameterT = TypeVar("ParameterT", bound="Parameter")
Expand Down

0 comments on commit 8903aae

Please sign in to comment.