diff options
author | 2024-03-04 16:28:41 +0000 | |
---|---|---|
committer | 2024-03-18 10:32:20 +0000 | |
commit | 9a497193db7cca2d64cd99251f34b83bec2d9137 (patch) | |
tree | 9d6cc66facadfc36e82ef7f3ada45bd25b788f59 /pydis_core/utils/cooldown.py | |
parent | Drop support for Python 3.10 (diff) |
Update ruff to target Python 3.11
Diffstat (limited to 'pydis_core/utils/cooldown.py')
-rw-r--r-- | pydis_core/utils/cooldown.py | 2 |
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) |