From 0bacb96a2981af2ba8e88276f295b5c5e899fe8a Mon Sep 17 00:00:00 2001 From: anonymousx97 <88324835+anonymousx97@users.noreply.github> Date: Wed, 9 Aug 2023 17:53:58 +0530 Subject: [PATCH] v2.2.3: get_key bug fix. --- app/api/instagram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/instagram.py b/app/api/instagram.py index 9119ebc..f3b6b47 100755 --- a/app/api/instagram.py +++ b/app/api/instagram.py @@ -73,7 +73,7 @@ class Instagram(ScraperConfig): # Rotating Key function to avoid hitting limit on single Key async def get_key(self): - keys, count = API_KEYS + keys, count = API_KEYS.values() count += 1 if count == len(keys): count = 0