From b19e71312c462461730d397c315092a630475062 Mon Sep 17 00:00:00 2001 From: lebedevhh Date: Mon, 15 Aug 2022 13:49:53 -0400 Subject: [PATCH] made some minor changes in signals.py --- src/flask/signals.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/flask/signals.py b/src/flask/signals.py index 2c6d6469..187e023a 100644 --- a/src/flask/signals.py +++ b/src/flask/signals.py @@ -27,8 +27,7 @@ except ImportError: def _fail(self, *args: t.Any, **kwargs: t.Any) -> t.Any: raise RuntimeError( - "Signalling support is unavailable because the blinker" - " library is not installed." + """Signalling support is unavailable because the blinker library is not installed.""" ) from None connect = connect_via = connected_to = temporarily_connected_to = _fail