mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-11 06:21:58 +08:00
fix ci
This commit is contained in:
@@ -36,7 +36,7 @@ class BooleanField(Field):
|
|||||||
def __set__(self, instance, value: bool) -> None: ...
|
def __set__(self, instance, value: bool) -> None: ...
|
||||||
def __get__(self, instance, owner) -> bool: ...
|
def __get__(self, instance, owner) -> bool: ...
|
||||||
|
|
||||||
class NullBooleanField(BooleanField):
|
class NullBooleanField(Field):
|
||||||
def __set__(self, instance, value: Optional[bool]) -> None: ...
|
def __set__(self, instance, value: Optional[bool]) -> None: ...
|
||||||
def __get__(self, instance, owner) -> Optional[bool]: ...
|
def __get__(self, instance, owner) -> Optional[bool]: ...
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user