aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_core/utils/cooldown.py
diff options
context:
space:
mode:
Diffstat (limited to 'pydis_core/utils/cooldown.py')
-rw-r--r--pydis_core/utils/cooldown.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_core/utils/cooldown.py b/pydis_core/utils/cooldown.py
index 91b9c5f3..d25d4507 100644
--- a/pydis_core/utils/cooldown.py
+++ b/pydis_core/utils/cooldown.py
@@ -81,7 +81,7 @@ class _SeparatedArguments:
for item in call_arguments:
try:
hash(item)
- except TypeError: # noqa: PERF203
+ except TypeError:
non_hashable.append(item)
else:
hashable.append(item)