Skip to content

Commit b69163a

Browse files
Remove type variable no longer needed
Signed-off-by: Daniel Zullo <[email protected]>
1 parent 7668d9d commit b69163a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/frequenz/sdk/actor/power_distributing/_battery_status.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from dataclasses import dataclass
1111
from datetime import datetime, timedelta, timezone
1212
from enum import Enum
13-
from typing import Iterable, Optional, Set, TypeVar, Union
13+
from typing import Iterable, Optional, Set, Union
1414

1515
# pylint: disable=no-name-in-module
1616
from frequenz.api.microgrid.battery_pb2 import ComponentState as BatteryComponentState
@@ -60,9 +60,6 @@ class SetPowerResult:
6060
"""Set of the batteries that failed."""
6161

6262

63-
T = TypeVar("T")
64-
65-
6663
@dataclass
6764
class _ComponentStreamStatus:
6865
component_id: int

0 commit comments

Comments
 (0)