From 69a710c4384c9d0ada5941b3fe404a315e34f5a2 Mon Sep 17 00:00:00 2001 From: Forest Gregg Date: Mon, 18 Dec 2023 19:42:33 -0500 Subject: [PATCH] typing --- dedupe/branch_and_bound.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dedupe/branch_and_bound.py b/dedupe/branch_and_bound.py index ef49830a..ad814c2c 100644 --- a/dedupe/branch_and_bound.py +++ b/dedupe/branch_and_bound.py @@ -1,11 +1,11 @@ import functools import warnings -from typing import Any, Iterable, Mapping, Sequence +from typing import Any, Iterable, Mapping, Sequence, Tuple from ._typing import Cover from .predicates import Predicate -Partial = tuple[Predicate, ...] +Partial = Tuple[Predicate, ...] def _reachable(dupe_cover: Mapping[Any, frozenset[int]]) -> int: