Skip to content

Commit 2a6a012

Browse files
committed
black reformat
1 parent 59b4d2e commit 2a6a012

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django-stubs/db/models/manager.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from django.db.models.base import Model
44
from django.db.models.query import QuerySet
55

66
_T = TypeVar("_T", bound=Model, covariant=True)
7-
_Self = TypeVar('_Self', bound='BaseManager')
7+
_Self = TypeVar("_Self", bound="BaseManager")
88

99
class BaseManager(QuerySet[_T]):
1010
creation_counter: int = ...
@@ -17,7 +17,7 @@ class BaseManager(QuerySet[_T]):
1717
def deconstruct(self) -> Tuple[bool, str, None, Tuple, Dict[str, int]]: ...
1818
def check(self, **kwargs: Any) -> List[Any]: ...
1919
@classmethod
20-
def from_queryset(cls: Type[_Self], queryset_class: Any, class_name: Optional[Any] = ...) -> Type[_Self]: ...
20+
def from_queryset(cls: Type[_Self], queryset_class: Any, class_name: Optional[Any] = ...) -> Type[_Self]: ...
2121
@classmethod
2222
def _get_queryset_methods(cls, queryset_class: type) -> Dict[str, Any]: ...
2323
def contribute_to_class(self, model: Type[Model], name: str) -> None: ...

0 commit comments

Comments
 (0)