Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 3, 2024
1 parent 799a626 commit 11f1673
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/sticker_convert/uploaders/upload_telegram.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,13 @@ async def upload_pack(
)

if sticker_set is None:
if count < 50 and count != len(stickers) - 1 and (
sticker_format_prev is None
or sticker_format_prev == sticker_format
if (
count < 50
and count != len(stickers) - 1
and (
sticker_format_prev is None
or sticker_format_prev == sticker_format
)
):
init_input_stickers.append(input_sticker)
else:
Expand Down

0 comments on commit 11f1673

Please sign in to comment.