From b9d58034d11674c65dfc5db0d424017cef09ff56 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 2 Dec 2021 16:36:56 +0100 Subject: pylint: Disable raise-missing-from --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 45bb8f364..e1fd53572 100644 --- a/.pylintrc +++ b/.pylintrc @@ -48,7 +48,8 @@ disable=locally-disabled, import-outside-toplevel, bad-continuation, # This lint disagrees with Black consider-using-f-string, - logging-fstring-interpolation + logging-fstring-interpolation, + raise-missing-from [BASIC] function-rgx=[a-z_][a-z0-9_]{2,50}$ -- cgit v1.2.3-54-g00ecf