Skip to content

Commit

Permalink
Suppress type checking for now on this.
Browse files Browse the repository at this point in the history
  • Loading branch information
bpepple committed Oct 23, 2023
1 parent 02f1f4a commit 9f00cb3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions metrontagger/duplicates.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def delete_comic_pages(dups_lst: list[DuplicateIssue]) -> None:
def show_image(first_comic: DuplicateIssue) -> None:
"""Method to show the user an image from a comic."""
comic = Comic(first_comic.path_)
# noinspection PyTypeChecker
img_data = comic.get_page(first_comic.pages_index)
try:
image = Image.open(io.BytesIO(img_data))
Expand Down

0 comments on commit 9f00cb3

Please sign in to comment.