aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pydis_core
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-02-19 21:27:16 +0000
committerGravatar Chris Lovering <[email protected]>2024-03-04 12:35:02 +0000
commit9c8fbd74b1d922f241c926cc26d609d0d13ae1c5 (patch)
tree0c2551275318d3ee0d64e4874121d54425ad4e4b /tests/pydis_core
parentruff lint fix: Add explicit namespaces for packages (diff)
ruff lint fix: Run remaining auto-fixable rules
Diffstat (limited to 'tests/pydis_core')
-rw-r--r--tests/pydis_core/utils/test_cooldown.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pydis_core/utils/test_cooldown.py b/tests/pydis_core/utils/test_cooldown.py
index eed16da3..45e74bd4 100644
--- a/tests/pydis_core/utils/test_cooldown.py
+++ b/tests/pydis_core/utils/test_cooldown.py
@@ -1,7 +1,7 @@
import unittest
from unittest.mock import patch
-from pydis_core.utils.cooldown import _CommandCooldownManager, _create_argument_tuple
+from pydis_core.utils.cooldown import _CommandCooldownManager, _create_argument_tuple # noqa: PLC2701
class CommandCooldownManagerTests(unittest.IsolatedAsyncioTestCase):