Skip to content

Commit

Permalink
Fixed file imports for match folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleskom committed Oct 22, 2022
1 parent 60a1ef9 commit 594f4c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Process-Data/Create_Games.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import numpy as np
import pandas as pd
from tqdm import tqdm
from src.Dictionaries import team_index_07, team_index_08, team_index_12, team_index_13, team_index_14
from src.Utils.Dictionaries import team_index_07, team_index_08, team_index_12, team_index_13, team_index_14

season_array = ["2007-08", "2008-09", "2009-10", "2010-11", "2011-12", "2012-13", "2013-14", "2014-15", "2015-16",
"2016-17", "2017-18", "2018-19", "2019-20", "2020-21"]
Expand Down
2 changes: 1 addition & 1 deletion src/Process-Data/Process_Odds_Data.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import pandas as pd
from tqdm import tqdm
from src.Dictionaries import team_codes
from src.Utils.Dictionaries import team_codes

directory = os.fsdecode('../../Odds-Data')

Expand Down

0 comments on commit 594f4c3

Please sign in to comment.