diff options
author | 2024-09-11 11:34:37 +0100 | |
---|---|---|
committer | 2024-09-11 11:37:21 +0100 | |
commit | b892c86eace80bfb05d2c690477496d651b4d4b1 (patch) | |
tree | 58b22a7b54bbf3e66848bb7de22942ee402d3ab4 | |
parent | Update Discord invite regex to also match backslash before the invite code (diff) |
Remove an unneeded noqa
-rw-r--r-- | tests/pydis_core/utils/test_cooldown.py | 2 |
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 45e74bd4..eed16da3 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 # noqa: PLC2701 +from pydis_core.utils.cooldown import _CommandCooldownManager, _create_argument_tuple class CommandCooldownManagerTests(unittest.IsolatedAsyncioTestCase): |