Refs #35667 -- Corrected usage of skip_file_prefixes in contributing docs.
Some checks are pending
Docs / spelling (push) Waiting to run
Docs / blacken-docs (push) Waiting to run
Docs / lint-docs (push) Waiting to run

This commit is contained in:
Clifford Gama 2025-09-13 14:20:17 +02:00 committed by GitHub
parent e183d6c26c
commit 9932866e3a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -295,7 +295,7 @@ deprecation ends. For example::
warnings.warn(
"foo() is deprecated.",
category=RemovedInDjangoXXWarning,
stacklevel=django_file_prefixes(),
skip_file_prefixes=django_file_prefixes(),
)
old_private_helper()
...