From 6a5a3d99c614eac8c27bfccbfea1a17125e189c1 Mon Sep 17 00:00:00 2001 From: nex Date: Wed, 29 Nov 2023 10:18:40 +0000 Subject: [PATCH] Fix RuntimeError --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 438f03e..5a77bf5 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -2341,7 +2341,7 @@ class OtherCog(commands.Cog): } } if proxy_name != "first-working": - for key, value in results.items(): + for key, value in results.copy().items(): if value["name"].lower() == proxy_name.lower(): continue else: