From 7cb22f87512dc244b220ef13d891ec320558e1da Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Wed, 25 Dec 2019 00:39:08 +0200 Subject: [PATCH] Reformat code --- tests/test_utils/test_text_decorations.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_utils/test_text_decorations.py b/tests/test_utils/test_text_decorations.py index 15394ee5..4811ee0c 100644 --- a/tests/test_utils/test_text_decorations.py +++ b/tests/test_utils/test_text_decorations.py @@ -1,6 +1,7 @@ from typing import List, Optional import pytest + from aiogram.api.types import MessageEntity, User from aiogram.utils.text_decorations import TextDecoration, html, markdown @@ -123,13 +124,13 @@ class TestTextDecoration: [ html, "test1 test2 test3", - [MessageEntity(type="bold", offset=6, length=6),], + [MessageEntity(type="bold", offset=6, length=6)], "test1 test2 test3", ], [ html, "test1 test2", - [MessageEntity(type="bold", offset=0, length=5),], + [MessageEntity(type="bold", offset=0, length=5)], "test1 test2", ], # [