Skip to content

Commit

Permalink
Ignore mypy undefined attribute isbn10 in test
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb committed Jul 9, 2024
1 parent 3871759 commit 6e14fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_checksums.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_ean14_checksum() -> None:

def test_isbn10_checksum() -> None:
isbn = get_barcode("isbn10", "376926085")
assert isbn.isbn10 == "3769260856"
assert isbn.isbn10 == "3769260856" # type: ignore[attr-defined]


def test_isbn13_checksum() -> None:
Expand Down

0 comments on commit 6e14fe7

Please sign in to comment.