From 0fce314c835ed020b2259bfef7ad674bf51fbc75 Mon Sep 17 00:00:00 2001 From: Rishat Fayzullin Date: Tue, 12 Mar 2024 11:53:27 +0300 Subject: [PATCH] Fix ruff linter error: E501 Line too long (100 > 99) --- aiogram/fsm/storage/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aiogram/fsm/storage/base.py b/aiogram/fsm/storage/base.py index 51c9f002..3078ce44 100644 --- a/aiogram/fsm/storage/base.py +++ b/aiogram/fsm/storage/base.py @@ -73,8 +73,8 @@ class DefaultKeyBuilder(KeyBuilder): parts.append(key.destiny) elif key.destiny != DEFAULT_DESTINY: raise ValueError( - "Default key builder is not configured to use key destiny other than the default.\n" - "\n" + "Default key builder is not configured to use key destiny other than the default." + "\n\n" "Probably, you should set `with_destiny=True` in for DefaultKeyBuilder." ) parts.append(part)