Skip to content

Commit

Permalink
_
Browse files Browse the repository at this point in the history
  • Loading branch information
xtsea authored Oct 24, 2024
1 parent 07ea860 commit 402324a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion akenoai/pyro_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async def wrapper(client, message):
formatting = (
f"UserID: {message.from_user.id if message.from_user else 0}"
f"Username: {message.from_user.username if message.from_user else None}"
f"First Name: {message.from_user.first_name if message.from_user else ""}"
f"First Name: {message.from_user.first_name if message.from_user else}"
)
return await client.send_message(channel_id, formatting)
except Exception as e:
Expand Down

0 comments on commit 402324a

Please sign in to comment.