kuzmoyev/beautiful-date

issue: Date should be rounder when added days

Closed this issue ยท 2 comments

today = D.today()
print(today)
print(today + 5*day )
results
2021-08-29
2021-08-05 # should be 2021-09-05

Just a humble request to implement this if possible.

You need to use days instead of day. day sets the date while days adds it. See this for more details.

You need to use days instead of day. day sets the date while days adds it. See this for more details.

Thanks for Quick reply and exact sol ๐Ÿ˜ƒ๐Ÿ˜Ž