Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.pytest_cache/
.ruff_cache/
.venv/
venv/
__pycache__/
django-source/
out/
Expand Down
4 changes: 2 additions & 2 deletions django-stubs/contrib/contenttypes/checks.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ from django.apps.config import AppConfig
from django.core.checks.messages import CheckMessage

def check_generic_foreign_keys(
app_configs: Sequence[AppConfig] | None = None, **kwargs: Any
app_configs: Sequence[AppConfig] | None, *, databases: Sequence[str] | None = ..., **kwargs: Any
) -> Sequence[CheckMessage]: ...
def check_model_name_lengths(
app_configs: Sequence[AppConfig] | None = None, **kwargs: Any
app_configs: Sequence[AppConfig] | None, *, databases: Sequence[str] | None = ..., **kwargs: Any
) -> Sequence[CheckMessage]: ...
2 changes: 0 additions & 2 deletions scripts/stubtest/allowlist_todo_django60.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ django.contrib.auth.management.RenamePermission
django.contrib.auth.management.rename_permissions
django.contrib.auth.templatetags
django.contrib.auth.templatetags.auth
django.contrib.contenttypes.checks.check_generic_foreign_keys
django.contrib.contenttypes.checks.check_model_name_lengths
django.contrib.contenttypes.fields.GenericForeignKey.ct_field_attname
django.contrib.contenttypes.fields.GenericForeignKey.get_prefetch_queryset
django.contrib.contenttypes.management.get_contenttypes_and_models
Expand Down
Loading