Skip to content

Commit de35654

Browse files
committed
Fix type hint issues
1 parent 652bab7 commit de35654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shc/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ async def _update(self, value: FadeStep, origin: List[Any]) -> None:
256256
await self._publish_and_wait(value.apply_to(current_value), origin)
257257

258258

259-
class ConvertSubscription(Subscribable[T], Generic[T]):
259+
class ConvertSubscription(Subscribable[T], Generic[S, T]):
260260
"""
261261
An adapter, wrapping a subscribable object of value type S and converting it to a subscribable object of value type
262262
T, using the default converter or a given converter function.

0 commit comments

Comments
 (0)