mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 06:21:58 +08:00
initial commit
This commit is contained in:
11
django/contrib/sites/managers.pyi
Normal file
11
django/contrib/sites/managers.pyi
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.core.checks.messages import Error
|
||||
from django.db.models.query import QuerySet
|
||||
from typing import List
|
||||
|
||||
|
||||
class CurrentSiteManager:
|
||||
def __init__(self, field_name: None = ...) -> None: ...
|
||||
def _check_field_name(self) -> List[Error]: ...
|
||||
def _get_field_name(self) -> str: ...
|
||||
def check(self, **kwargs) -> List[Error]: ...
|
||||
def get_queryset(self) -> QuerySet: ...
|
||||
Reference in New Issue
Block a user