Skip to content

Commit

Permalink
CU-8693wtx4: Fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mart-r committed Feb 22, 2024
1 parent 3dec0e5 commit 69155af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion medcat/compare_models/compare.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def cui2name(cui):
return res


def get_per_annotation_diffs(cat1: CAT, cat2: CAT, documents: Tuple[str, str],
def get_per_annotation_diffs(cat1: CAT, cat2: CAT, documents: List[Tuple[str, str]],
show_progress: bool = True) -> PerAnnotationDifferences:
pad = PerAnnotationDifferences()
for doc_id, doc in tqdm.tqdm(documents, disable=not show_progress):
Expand Down

0 comments on commit 69155af

Please sign in to comment.