Skip to content

Commit

Permalink
Fix typo (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
der-gabe authored Oct 24, 2023
1 parent ccce046 commit 6cf4819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class FilterEnum(Enum):
EQ = Filter('eq', '__eq__', 'equal to')
LT = Filter('lt', '__lt__', 'less than')
GT = Filter('gt', '__gt__', 'greater than')
LE = Filter('le', '__le__', 'less than of equal to')
LE = Filter('le', '__le__', 'less than or equal to')
GE = Filter('ge', '__ge__', 'greater than or equal to')
NE = Filter('ne', '__ne__', 'not equal to')
CONTAINS = Filter('contains', 'icontains', 'contains substring')
Expand Down

0 comments on commit 6cf4819

Please sign in to comment.