We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 869fe2d commit f15da4fCopy full SHA for f15da4f
1 file changed
dpath/types.py
@@ -23,6 +23,9 @@ def __eq__(self, other):
23
def __repr__(self):
24
return f"<CyclicInt {int(self)}/{self.max_value}>"
25
26
+ def __str__(self):
27
+ return str(int(self))
28
+
29
30
class MergeType(IntFlag):
31
ADDITIVE = auto()
0 commit comments