Skip to content

Commit

Permalink
refactor: group imports from same package (#41)
Browse files Browse the repository at this point in the history
Imports for the same package are scattered and not grouped together. It is recommended to keep the imports from the same package together. It makes the code easier to read.

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
  • Loading branch information
deepsource-autofix[bot] authored Jan 9, 2024
1 parent b6c10d9 commit 0fb89ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/cave/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import random
import re
import base64
from nonebot import logger
from nonebot import get_driver, logger, on_command
import requests
from nonebot.adapters.onebot.v11 import Message, Bot, GroupMessageEvent, PrivateMessageEvent, MessageEvent
from nonebot import on_command, get_driver
Expand Down

0 comments on commit 0fb89ab

Please sign in to comment.