We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f676b3d commit e521e6eCopy full SHA for e521e6e
mypy/stubtest.py
@@ -2432,11 +2432,11 @@ def warning_callback(msg: str) -> None:
2432
continue
2433
if args.ignore_disjoint_bases and error.is_disjoint_base_related():
2434
2435
+ if not args.strict_type_check_only and error.is_private_type_check_only_related():
2436
+ continue
2437
if error.object_desc in allowlist:
2438
allowlist[error.object_desc] = True
2439
- if not args.strict_type_check_only and error.is_private_type_check_only_related():
- continue
2440
is_allowlisted = False
2441
for w in allowlist:
2442
if allowlist_regexes[w].fullmatch(error.object_desc):
0 commit comments