Update pool.py

This commit is contained in:
isaa_ctaylor 2022-02-15 10:24:21 +00:00 committed by GitHub
parent b98822d4a2
commit 661518875b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class Node:
"Authorization": self._password, "Authorization": self._password,
"User-Id": str(self._bot.user.id), "User-Id": str(self._bot.user.id),
"Client-Name": f"Pomice/{__version__}", "Client-Name": f"Pomice/{__version__}",
"Num-Shards": getattr(bot, "shards", 1) "Num-Shards": str(getattr(bot, "shards", 1)),
} }
self._players: Dict[int, Player] = {} self._players: Dict[int, Player] = {}