Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
raidensakura committed Aug 18, 2023
1 parent 5a38b70 commit d8cf51b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion core/migrations.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import datetime
import re
from typing import Optional, List
from typing import List, Optional

from core import blocklist
from core.models import getLogger
Expand Down
8 changes: 3 additions & 5 deletions core/thread.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import asyncio
import base64
import copy
import functools
import io
import re
import time
import traceback
import typing
import warnings
from datetime import timedelta
Expand Down Expand Up @@ -1022,7 +1018,9 @@ async def send(
images.extend(image_urls)
images.extend(
(
i.url if i.format in (discord.StickerFormatType.png, discord.StickerFormatType.apng) else None,
i.url
if i.format in (discord.StickerFormatType.png, discord.StickerFormatType.apng)
else None,
i.name,
True,
)
Expand Down

0 comments on commit d8cf51b

Please sign in to comment.