We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ea001e commit 4e5b243Copy full SHA for 4e5b243
1 file changed
src/undate/date.py
@@ -33,6 +33,13 @@ def days(self) -> int:
33
34
@dataclass
35
class UnInt:
36
+ """An uncertain integer intended for use with uncertain durations (:class:`UnDelta`),
37
+ to convey a range of possible integer values between an upper
38
+ and lower bound (inclusive). Supports comparison, addition and subtraction,
39
+ checking if a value is included in the range, and iterating over numbers
40
+ included in the range.
41
+ """
42
+
43
lower: int
44
upper: int
45
0 commit comments