Skip to content

Commit

Permalink
Week range fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tdmittens committed Apr 9, 2021
1 parent 08ed4de commit 01c30e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified python/__pycache__/layout.cpython-37.pyc
Binary file not shown.
4 changes: 2 additions & 2 deletions python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@
try:
weekRange = ((int)(gui_values['startWeek']), (int)(gui_values['endWeek']))
except:
print("Provided week range has not been provided or is not a number. Default range of week 8-16 will be used.")
weekRange = (8, 16)
print("Provided week range has not been provided or is not a number. Default range of week 27-35 will be used.")
weekRange = (27, 35)

"""
Store orders must be compiled to be for a specific date, divided into multiple data frames for each store
Expand Down

0 comments on commit 01c30e4

Please sign in to comment.