Skip to content

Commit

Permalink
Resolve issue with type checking in 3rd party referencing.jsonschema.
Browse files Browse the repository at this point in the history
Since this is a third party library, ignore the error that mypy gives:

... referencing/jsonschema.py:426: error:
Invalid "type: ignore" comment  [syntax]
  • Loading branch information
plypaul committed Nov 15, 2023
1 parent ff6ae22 commit 809c5c6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,8 @@ ignore_missing_imports = True

[mypy-update_checker]
ignore_missing_imports = True

# Added to resolve an issue with mypy in CI:
# ... python3.8/site-packages/referencing/jsonschema.py:426: error: Invalid "type: ignore" comment [syntax]
[mypy-referencing.jsonschema]
follow_imports = skip

0 comments on commit 809c5c6

Please sign in to comment.