From 0ce3469061ccd76a6cf99516f0a17dcd0d9a30bf Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Wed, 11 Sep 2024 11:34:37 +0100 Subject: [PATCH] Remove an unneeded noqa --- tests/pydis_core/utils/test_cooldown.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pydis_core/utils/test_cooldown.py b/tests/pydis_core/utils/test_cooldown.py index 45e74bd4f..eed16da33 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):