Skip to content

Commit

Permalink
typing
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Dec 19, 2023
1 parent 830dd21 commit 69a710c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dedupe/branch_and_bound.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import functools
import warnings
from typing import Any, Iterable, Mapping, Sequence
from typing import Any, Iterable, Mapping, Sequence, Tuple

Check warning on line 3 in dedupe/branch_and_bound.py

View check run for this annotation

Codecov / codecov/patch

dedupe/branch_and_bound.py#L1-L3

Added lines #L1 - L3 were not covered by tests

from ._typing import Cover
from .predicates import Predicate

Check warning on line 6 in dedupe/branch_and_bound.py

View check run for this annotation

Codecov / codecov/patch

dedupe/branch_and_bound.py#L5-L6

Added lines #L5 - L6 were not covered by tests

Partial = tuple[Predicate, ...]
Partial = Tuple[Predicate, ...]

Check warning on line 8 in dedupe/branch_and_bound.py

View check run for this annotation

Codecov / codecov/patch

dedupe/branch_and_bound.py#L8

Added line #L8 was not covered by tests


def _reachable(dupe_cover: Mapping[Any, frozenset[int]]) -> int:
Expand Down

0 comments on commit 69a710c

Please sign in to comment.