From 4205c0a8f06515bb9f691bc4e689da0eb370e590 Mon Sep 17 00:00:00 2001 From: Zedifus Date: Mon, 23 May 2022 20:53:23 +0100 Subject: [PATCH] Exempt jsonschema falsepositive E0611 Can't understand why these are flagging, code is as per docs. Version is latest, and not flagging locally. Going to exempt mod for now --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index ba047ba8..6e47cc92 100644 --- a/.pylintrc +++ b/.pylintrc @@ -443,7 +443,7 @@ ignored-classes=optparse.Values,thread._local,_thread._local # (useful for modules/projects where namespaces are manipulated during runtime # and thus existing member attributes cannot be deduced by static analysis). It # supports qualified module names, as well as Unix pattern matching. -ignored-modules= +ignored-modules=jsonschema # Show a hint with possible names when a member name was not found. The aspect # of finding the hint is based on edit distance.