made some minor changes in signals.py

This commit is contained in:
lebedevhh 2022-08-15 13:49:53 -04:00
parent 36af821edf
commit b19e71312c

View file

@ -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