mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
13 lines
229 B
Python
13 lines
229 B
Python
class RegisterLookupMixin:
|
|
pass
|
|
|
|
|
|
class Q(object):
|
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
|
|
def __or__(self, other: Q) -> Q: ...
|
|
|
|
def __and__(self, other: Q) -> Q: ...
|
|
|
|
def __invert__(self) -> Q: ...
|