Skip to content

Commit

Permalink
Allow datetime - F("datetime") expression
Browse files Browse the repository at this point in the history
  • Loading branch information
kalekseev authored Feb 20, 2024
1 parent b5c86bf commit 0494b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/db/models/expressions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Combinable:
def __radd__(
self, other: datetime | _Numeric | Combinable | None
) -> Combinable: ...
def __rsub__(self, other: _Numeric | Combinable) -> Combinable: ...
def __rsub__(self, other: datetime | _Numeric | Combinable) -> Combinable: ...
def __rmul__(self, other: _Numeric | Combinable) -> Combinable: ...
def __rtruediv__(self, other: _Numeric | Combinable) -> Combinable: ...
def __rmod__(self, other: int | Combinable) -> Combinable: ...
Expand Down

0 comments on commit 0494b0c

Please sign in to comment.