Skip to content

Commit 490fa2d

Browse files
incremental progress debugging dates
1 parent 97f3722 commit 490fa2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/penn_chime/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def add_date_column(
5555
start = today - delta
5656
else:
5757
start = today
58-
end = start + timedelta(days=n_days + 1) + delta # the +delta part is a hypothesis by phil
58+
end = start + timedelta(days=n_days + 1) # + delta # the +delta part is a hypothesis by phil
5959
# And pick dates present in frame
6060
dates = pd.date_range(start=start, end=end, freq="D")[df.day.tolist()]
6161

0 commit comments

Comments
 (0)