We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 065dedb commit 78d3b50Copy full SHA for 78d3b50
dozer/cogs/namegame.py
@@ -169,7 +169,7 @@ def __init__(self, bot: commands.Bot):
169
super().__init__(bot)
170
with gzip.open("ftc_teams.pickle.gz") as f:
171
raw_teams = pickle.load(f)
172
- self.ftc_teams = {number: name for (number, name) in raw_teams.items()}
+ self.ftc_teams = dict(raw_teams.items())
173
self.games = {}
174
175
tba_config = bot.config['tba']
0 commit comments