Skip to content

Commit

Permalink
Fix ruff failures
Browse files Browse the repository at this point in the history
  • Loading branch information
unode committed Mar 31, 2024
1 parent a585469 commit 5e2bd43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/integration_tests/test_direct_message_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import time
from string import ascii_letters

from .utils import start_bot # noqa, only imported so that the bot is started
from .utils import start_bot # noqa: F401, only imported so that the bot is started
from .utils import MAIN_BOT_ID, OFF_TOPIC_ID, RESPONSE_TIMEOUT, TEAM_ID
from .utils import driver as driver_fixture
from .utils import expect_reply
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_example_plugin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import time

from .utils import start_bot # noqa, only imported so that the bot is started
from .utils import start_bot # noqa: F401, only imported so that the bot is started
from .utils import MAIN_BOT_ID, OFF_TOPIC_ID, RESPONSE_TIMEOUT, TEAM_ID
from .utils import driver as driver_fixture
from .utils import expect_reply
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_webhook_example.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import asyncio
import time

from .utils import start_bot # noqa, only imported so that the bot is started
from .utils import start_bot # noqa: F401, only imported so that the bot is started
from .utils import OFF_TOPIC_ID, RESPONSE_TIMEOUT
from .utils import driver as driver_fixture
from .utils import expect_reply
Expand Down

0 comments on commit 5e2bd43

Please sign in to comment.