2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-30 13:57:54 +00:00

Code style fix

This commit is contained in:
Dan 2018-08-13 22:06:43 +02:00
parent 85c50ef4dd
commit 4fe9cffc32

View File

@ -81,7 +81,8 @@ def parse_entities(entities: list, users: dict) -> list:
entity_type = ENTITIES.get(entity.ID, None)
if entity_type:
output_entities.append(pyrogram_types.MessageEntity(
output_entities.append(
pyrogram_types.MessageEntity(
type=entity_type,
offset=entity.offset,
length=entity.length,
@ -92,7 +93,8 @@ def parse_entities(entities: list, users: dict) -> list:
None
)
)
))
)
)
return output_entities