We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a6c90 commit ca65cceCopy full SHA for ca65cce
pydantic_changedetect/changedetect.py
@@ -73,7 +73,7 @@ class Something(ChangeDetectionMixin, pydantic.BaseModel):
73
model_self_changed_fields: set[str] = PrivateAttr(...)
74
model_changed_markers: set[str] = PrivateAttr(...)
75
76
- __slots__ = ("model_original", "model_self_changed_fields", "model_changed_markers")
+ __slots__ = ("model_changed_markers", "model_original", "model_self_changed_fields")
77
78
def __init__(self, **kwargs: Any) -> None:
79
super().__init__(**kwargs)
0 commit comments