Skip to content

Commit

Permalink
fix(command.utils): describe_user: missing right parenthesis
Browse files Browse the repository at this point in the history
Signed-off-by: Rongrong <[email protected]>
  • Loading branch information
Rongronggg9 committed Jul 28, 2024
1 parent 587c993 commit b8038b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/command/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ def describe_user():
f'{sender_fullname} ({sender_id}',
f', {participant_type}' if participant_type and chat_info else '',
f', {type(event.query.peer_type).__name__}' if is_inline else '',
f') in {chat_info}' if chat_info else '',
')',
f' in {chat_info}' if chat_info else '',
))

async def user_and_chat_permission_check():
Expand Down

0 comments on commit b8038b8

Please sign in to comment.