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 cb26881 commit aa24448Copy full SHA for aa24448
2 files changed
plugin/rules/constraint.py
@@ -29,7 +29,7 @@ def list_constraints() -> Generator[type[AbstractConstraint]]:
29
yield from list_all_subclasses(AbstractConstraint, skip_abstract=True) # type: ignore
30
31
32
-@dataclass(slots=True)
+@dataclass
33
class ConstraintRule(Optimizable):
34
constraint: AbstractConstraint | None = None
35
constraint_name: str = ""
plugin/rules/match.py
@@ -26,7 +26,7 @@ def list_matches() -> Generator[type[AbstractMatch]]:
26
yield from list_all_subclasses(AbstractMatch, skip_abstract=True) # type: ignore
27
28
class MatchRule(Optimizable):
match: AbstractMatch | None = None
match_name: str = ""
0 commit comments