Skip to content

Commit 33b87a1

Browse files
authored
Merge pull request #490 from 0verkil/update-ftc-namegame
Update FTC Team List for Name Game
2 parents c08a4b8 + 78d3b50 commit 33b87a1

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

dozer/cogs/namegame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def __init__(self, bot: commands.Bot):
169169
super().__init__(bot)
170170
with gzip.open("ftc_teams.pickle.gz") as f:
171171
raw_teams = pickle.load(f)
172-
self.ftc_teams = {team: data['seasons'][0]['name'] for (team, data) in raw_teams.items()}
172+
self.ftc_teams = dict(raw_teams.items())
173173
self.games = {}
174174

175175
tba_config = bot.config['tba']

ftc_teams.pickle.gz

-774 KB
Binary file not shown.

0 commit comments

Comments
 (0)