From 5456a4153a62d470718f45ab665e319f0bbb2383 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 22 Jan 2024 09:53:55 +0100 Subject: Update flake8 ignores --- qutebrowser/utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py index f83f838fe..a9de4bc00 100644 --- a/qutebrowser/utils/utils.py +++ b/qutebrowser/utils/utils.py @@ -341,7 +341,7 @@ class prevent_exceptions: # noqa: N801,N806 pylint: disable=invalid-name """Call the original function.""" try: return func(*args, **kwargs) - except BaseException: + except BaseException: # noqa: B036 log.misc.exception("Error in {}".format(qualname(func))) return retval -- cgit v1.2.3-54-g00ecf