From e0bafa4586c09c650596182a76f01e3b67d92169 Mon Sep 17 00:00:00 2001 From: Forest Gregg Date: Thu, 20 Jun 2024 19:58:35 -0400 Subject: [PATCH] 3.8 typing --- dedupe/_typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dedupe/_typing.py b/dedupe/_typing.py index 59762390..d85edb98 100644 --- a/dedupe/_typing.py +++ b/dedupe/_typing.py @@ -124,7 +124,7 @@ class FieldVariable(Variable, Protocol): class InteractionVariable(Variable, Protocol): - interaction_fields: list[str] + interaction_fields: List[str] MapLike = Callable[[Callable[[Any], Any], Iterable], Iterable]