We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e63cf40 + 7087ab2 commit 34afd92Copy full SHA for 34afd92
1 file changed
src/diff/delta.py
@@ -8,3 +8,9 @@ class Delta:
8
path: str
9
new_value: typing.Any | None
10
old_value: typing.Any | None
11
+
12
+ def __repr__(self):
13
+ return (
14
+ f"Delta(operation='{self.operation}', path='{self.path}', "
15
+ f"new_value={self.new_value!r}, old_value={self.old_value!r})"
16
+ )
0 commit comments