Skip to content

Commit

Permalink
Fixed typo in django/db/models/expressions.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixxm authored Mar 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 20848bc commit 1fffa4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/models/expressions.py
Original file line number Diff line number Diff line change
@@ -175,7 +175,7 @@ class BaseExpression:
_output_field_resolved_to_none = False
# Can the expression be used in a WHERE clause?
filterable = True
# Can the expression can be used as a source expression in Window?
# Can the expression be used as a source expression in Window?
window_compatible = False
# Can the expression be used as a database default value?
allowed_default = False

0 comments on commit 1fffa4a

Please sign in to comment.