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