Skip to content

Commit

Permalink
Fix missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
jbothma committed Aug 21, 2024
1 parent 40d069d commit c3e540f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nomenklatura/matching/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def bench_matcher(name: str, pairs_file: PathLike, number: int) -> None:
log.info("Loaded %s", matcher.NAME)
infinite_pairs = cycle(pairs)

def compare_one_pair():
def compare_one_pair() -> None:
pair = next(infinite_pairs)
matcher.compare(pair.left, pair.right)

Expand Down

0 comments on commit c3e540f

Please sign in to comment.