1
0
mirror of https://github.com/django/django.git synced 2025-03-10 17:32:41 +00:00

Fixed typo in django/db/models/expressions.py.

This commit is contained in:
Mariusz Felisiak 2024-03-07 08:40:24 +01:00 committed by GitHub
parent 20848bcf39
commit 1fffa4af12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -175,7 +175,7 @@ class BaseExpression:
_output_field_resolved_to_none = False _output_field_resolved_to_none = False
# Can the expression be used in a WHERE clause? # Can the expression be used in a WHERE clause?
filterable = True 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 window_compatible = False
# Can the expression be used as a database default value? # Can the expression be used as a database default value?
allowed_default = False allowed_default = False