From 1cd8d03ddf710f516ee169a34c0e4736296ba7b9 Mon Sep 17 00:00:00 2001 From: K1rL3s Date: Mon, 16 Feb 2026 06:34:06 +0300 Subject: [PATCH] feat: Fix Ruff comma --- tests/test_utils/test_text_decorations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils/test_text_decorations.py b/tests/test_utils/test_text_decorations.py index c75620d2..3563c328 100644 --- a/tests/test_utils/test_text_decorations.py +++ b/tests/test_utils/test_text_decorations.py @@ -72,7 +72,7 @@ class TestTextDecoration: [ markdown_decoration, MessageEntity(type="text_link", offset=0, length=5, url="https://aiogram.dev"), - "[test](https://aiogram.dev)" + "[test](https://aiogram.dev)", ], [markdown_decoration, MessageEntity(type="bold", offset=0, length=5), "*test*"], [markdown_decoration, MessageEntity(type="italic", offset=0, length=5), "_\rtest_\r"],