diff --git a/mypy.ini b/mypy.ini index 965b377e44a..fa826242fda 100644 --- a/mypy.ini +++ b/mypy.ini @@ -5,7 +5,7 @@ show_error_codes = True # Exclude _files.py because mypy isn't smart enough to apply # the correct type narrowing and as this is an internal module # it's fine to just use Pyright. -exclude = ^(src/cloudflare/_files\.py|_dev/.*\.py)$ +exclude = ^(src/cloudflare/_files\.py|_dev/.*\.py|src/cloudflare/resources/zero_trust/identity_providers\.py|src/cloudflare/resources/zero_trust/access/applications/applications\.py)$ strict_equality = True implicit_reexport = True diff --git a/pyproject.toml b/pyproject.toml index f042a01a8c0..1f0e71fe5bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -129,6 +129,7 @@ reportImplicitOverride = true reportImportCycles = false reportPrivateUsage = false +reportOverlappingOverload = false [tool.ruff]