diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2022-03-17 18:04:24 +0200 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2022-03-17 18:04:24 +0200 |
commit | 6d6a6a8ac331135aa26320c532f47f25872d4243 (patch) | |
tree | e83b099a025899bcfa41559a1a4c6588e00f8724 /api/utils.py | |
parent | 98e375682a50f3cdeddc8e6af022d1e8d12f608d (diff) |
fix importing modules, add readme
Diffstat (limited to 'api/utils.py')
-rw-r--r-- | api/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/utils.py b/api/utils.py index c04bdf1..069f072 100644 --- a/api/utils.py +++ b/api/utils.py @@ -2,8 +2,8 @@ import pandas as pd # Making relative paths. On windows slashes would be backwards # It is probably not the best way. -relPathTeams = "../AllAboutData/Data/NBAteams.csv" -relPathPlayers = "../AllAboutData/Data/Players/" +relPathTeams = "../../AllAboutData/Data/NBAteams.csv" +relPathPlayers = "../../AllAboutData/Data/Players/" def getTeamNames(): ''' |