initial commit

This commit is contained in:
Maxim Kurnikov
2018-07-29 18:12:23 +03:00
commit a9f215bf64
311 changed files with 13433 additions and 0 deletions

View 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: ...