Skip to content

Commit fb39c6c

Browse files
authored
Fix time range bug in basic example
1 parent 65f2ad7 commit fb39c6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/basic/basic.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@
203203
"outputs": [],
204204
"source": [
205205
"days = [datetime.utcnow().replace(hour=0, minute=0, second=0, microsecond=0).replace(tzinfo=utc) \\\n",
206-
" - timedelta(day) for day in range(31)]\n",
206+
" - timedelta(day) for day in range(3)][::-1]\n",
207207
"\n",
208208
"customers = [1001, 1002, 1003, 1004, 1005]"
209209
]

0 commit comments

Comments
 (0)