From 661518875b01e9a1d9f39b6799b80498b768aca1 Mon Sep 17 00:00:00 2001 From: isaa_ctaylor Date: Tue, 15 Feb 2022 10:24:21 +0000 Subject: [PATCH] Update pool.py --- pomice/pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomice/pool.py b/pomice/pool.py index 1db06bf..33d6ecc 100644 --- a/pomice/pool.py +++ b/pomice/pool.py @@ -97,7 +97,7 @@ class Node: "Authorization": self._password, "User-Id": str(self._bot.user.id), "Client-Name": f"Pomice/{__version__}", - "Num-Shards": getattr(bot, "shards", 1) + "Num-Shards": str(getattr(bot, "shards", 1)), } self._players: Dict[int, Player] = {}