Skip to content

Commit ca65cce

Browse files
committed
chore(pydantic_changedetect): ♻️ Apply new ruff linting rules
1 parent a0a6c90 commit ca65cce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydantic_changedetect/changedetect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Something(ChangeDetectionMixin, pydantic.BaseModel):
7373
model_self_changed_fields: set[str] = PrivateAttr(...)
7474
model_changed_markers: set[str] = PrivateAttr(...)
7575

76-
__slots__ = ("model_original", "model_self_changed_fields", "model_changed_markers")
76+
__slots__ = ("model_changed_markers", "model_original", "model_self_changed_fields")
7777

7878
def __init__(self, **kwargs: Any) -> None:
7979
super().__init__(**kwargs)

0 commit comments

Comments
 (0)