Skip to content

Commit d6ef1f2

Browse files
author
boraxpr
committed
bites 175 - Find missing dates by using pandas, dateutil.relativedelta and datetime.
(A fix commit - breakpoint() causes error in the testing) Obstacles : 1. Get a range of days of the user input month - solved by date_range. 2. Get an end dates for creating date_range - solved by relativedelta (Add a month and substract a day to the start date)
1 parent 86be046 commit d6ef1f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

175/missing_dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ def get_missing_dates(dates):
2323
return date_rng[date_rng.isin(dates) == 0]
2424

2525

26-
breakpoint()
26+
# breakpoint()
2727
get_missing_dates(dates)

0 commit comments

Comments
 (0)