We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710f354 commit 5ddcf06Copy full SHA for 5ddcf06
src/eligibility_signposting_api/model/rules.py
@@ -100,7 +100,7 @@ class IterationRule(BaseModel):
100
operator: RuleOperator = Field(..., alias="Operator")
101
comparator: RuleComparator = Field(..., alias="Comparator")
102
attribute_target: RuleAttributeTarget | None = Field(None, alias="AttributeTarget")
103
- rule_stop: RuleStop = Field(default=False, alias="RuleStop")
+ rule_stop: RuleStop = Field(default=RuleStop(False), alias="RuleStop") # noqa: FBT003
104
105
@field_validator("rule_stop", mode="before")
106
@staticmethod
0 commit comments