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 4ec3977 commit 3b159a2
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
Expand Up @@ -2,12 +2,12 @@

import functools
import warnings
from typing import Any, Iterable, Mapping, Sequence
from typing import Any, Iterable, Mapping, Sequence, Tuple

Check warning on line 5 in dedupe/branch_and_bound.py

View check run for this annotation

Codecov / codecov/patch

dedupe/branch_and_bound.py#L3-L5

Added lines #L3 - L5 were not covered by tests

from ._typing import Cover
from .predicates import 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#L7-L8

Added lines #L7 - L8 were not covered by tests

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

Check warning on line 10 in dedupe/branch_and_bound.py

View check run for this annotation

Codecov / codecov/patch

dedupe/branch_and_bound.py#L10

Added line #L10 was not covered by tests


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

0 comments on commit 3b159a2

Please sign in to comment.