Skip to content

Commit e6fec76

Browse files
committed
Remove Protocol typing
1 parent 60dd2af commit e6fec76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugwise_usb/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from datetime import datetime
66
from enum import Enum, auto
77
import logging
8-
from typing import Any, Protocol
8+
from typing import Any
99

1010
_LOGGER = logging.getLogger(__name__)
1111

@@ -227,7 +227,7 @@ class EnergyStatistics:
227227
week_production_reset: datetime | None = None
228228

229229

230-
class PlugwiseNode(Protocol):
230+
class PlugwiseNode:
231231
"""Protocol definition of a Plugwise device node."""
232232

233233
def __init__(

0 commit comments

Comments
 (0)