We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97f3722 commit 490fa2dCopy full SHA for 490fa2d
src/penn_chime/utils.py
@@ -55,7 +55,7 @@ def add_date_column(
55
start = today - delta
56
else:
57
start = today
58
- end = start + timedelta(days=n_days + 1) + delta # the +delta part is a hypothesis by phil
+ end = start + timedelta(days=n_days + 1) # + delta # the +delta part is a hypothesis by phil
59
# And pick dates present in frame
60
dates = pd.date_range(start=start, end=end, freq="D")[df.day.tolist()]
61
0 commit comments