Skip to content

Commit 686d4a9

Browse files
committed
fix: fixed types in new protocol
1 parent 1138018 commit 686d4a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sourcery_analytics/metrics/compounders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
U = typing.TypeVar("U")
1111

1212

13-
class Compounder(typing.Protocol[N, T]):
13+
class Compounder(typing.Protocol[N, T, U]):
1414
def __call__(self, *metrics: Metric[N, T]) -> Metric[N, U]:
1515
...
1616

0 commit comments

Comments
 (0)