isodatetime icon indicating copy to clipboard operation
isodatetime copied to clipboard

Create a public `.copy()` method that supports changing properties

Open MetRonnie opened this issue 3 years ago • 0 comments

E.g. for TimePoint:

>>> a = TimePoint(year=2022, hour_of_day=6)
<TimePoint 2022-01-01T06:00Z>
>>> b = a.copy(hour_of_day=0)
<TimePoint 2022-01-01T00:00Z>

MetRonnie avatar Apr 05 '22 10:04 MetRonnie