From d33e1d9913c86a0f5b290bbf9fd00137caeaf94d Mon Sep 17 00:00:00 2001 From: Jasmin Bom Date: Sat, 9 Feb 2019 18:45:34 +0100 Subject: [PATCH] Small flake8 fix --- tests/test_sticker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_sticker.py b/tests/test_sticker.py index 314827f2b..ab81b5b13 100644 --- a/tests/test_sticker.py +++ b/tests/test_sticker.py @@ -249,7 +249,8 @@ class TestStickerSet(object): with open('tests/data/telegram_sticker.png', 'rb') as f: file = bot.upload_sticker_file(95205500, f) assert file - assert bot.add_sticker_to_set(chat_id, 'test_by_{0}'.format(bot.username), file.file_id, '😄') + assert bot.add_sticker_to_set(chat_id, 'test_by_{0}'.format(bot.username), + file.file_id, '😄') def test_sticker_set_to_dict(self, sticker_set): sticker_set_dict = sticker_set.to_dict()