Skip to content

Commit

Permalink
disable_error_code = import-untyped in mypy.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored and jaraco committed Aug 25, 2024
1 parent 57b8aa8 commit d166f44
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ enable_error_code = ignore-without-code
# Support namespace packages per https://github.com/python/mypy/issues/14057
explicit_package_bases = True

# Disable overload-overlap due to many false-positives
disable_error_code = overload-overlap
disable_error_code =
# Disabled due to many false-positives
overload-overlap,
# Disable import-untyped to avoid widespread failures. Remove when safe or when
# specific exclusions supersede this broad setting.
import-untyped,

0 comments on commit d166f44

Please sign in to comment.