Skip to content

Commit 5eb050e

Browse files
Removed whitespace.
1 parent 07170e6 commit 5eb050e

File tree

1 file changed

+0
-10
lines changed
  • src/eligibility_signposting_api/model

1 file changed

+0
-10
lines changed

src/eligibility_signposting_api/model/rules.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,41 +40,31 @@ class RuleOperator(str, Enum):
4040
ne = "!="
4141
gte = ">="
4242
lte = "<="
43-
4443
contains = "contains"
4544
not_contains = "not_contains"
4645
starts_with = "starts_with"
4746
not_starts_with = "not_starts_with"
4847
ends_with = "ends_with"
49-
5048
is_in = "in"
5149
not_in = "not_in"
52-
5350
member_of = "MemberOf"
5451
not_member_of = "NotaMemberOf"
55-
5652
is_null = "is_null"
5753
is_not_null = "is_not_null"
58-
5954
between = "between"
6055
not_between = "not_between"
61-
6256
is_empty = "is_empty"
6357
is_not_empty = "is_not_empty"
64-
6558
is_true = "is_true"
6659
is_false = "is_false"
67-
6860
day_lte = "D<="
6961
day_lt = "D<"
7062
day_gte = "D>="
7163
day_gt = "D>"
72-
7364
week_lte = "W<="
7465
week_lt = "W<"
7566
week_gte = "W>="
7667
week_gt = "W>"
77-
7868
year_lte = "Y<="
7969
year_lt = "Y<"
8070
year_gte = "Y>="

0 commit comments

Comments
 (0)