From ab7c52a9c4b4748f614651f29c93c26827870752 Mon Sep 17 00:00:00 2001
From: cdce8p <30130371+cdce8p@users.noreply.github.com>
Date: Tue, 4 Dec 2018 10:45:16 +0100
Subject: [PATCH] Add unnecessary-pass for pylint-update (#18985)

---
 pylintrc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pylintrc b/pylintrc
index be06f83e6f2..a88aabe1936 100644
--- a/pylintrc
+++ b/pylintrc
@@ -12,6 +12,7 @@
 # abstract-method - with intro of async there are always methods missing
 # inconsistent-return-statements - doesn't handle raise
 # not-an-iterable - https://github.com/PyCQA/pylint/issues/2311
+# unnecessary-pass - readability for functions which only contain pass
 disable=
   abstract-class-little-used,
   abstract-method,
@@ -32,6 +33,7 @@ disable=
   too-many-public-methods,
   too-many-return-statements,
   too-many-statements,
+  unnecessary-pass,
   unused-argument
 
 [REPORTS]
-- 
GitLab