From 2c3e1926de3876139d469896206362fe28a87b1f Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 14 Jan 2021 12:53:19 +0800 Subject: [PATCH] mgr/dashboard: disable unsubscriptable-object warning from pylint see https://github.com/PyCQA/pylint/issues/3882 Signed-off-by: Kefu Chai --- src/pybind/mgr/dashboard/.pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/.pylintrc b/src/pybind/mgr/dashboard/.pylintrc index f4cd20ec9c1..79dfbad7d96 100644 --- a/src/pybind/mgr/dashboard/.pylintrc +++ b/src/pybind/mgr/dashboard/.pylintrc @@ -123,7 +123,8 @@ disable=import-star-module-level, relative-beyond-top-level, raise-missing-from, super-with-arguments, - import-outside-toplevel + import-outside-toplevel, + unsubscriptable-object # Enable the message, report, category or checker with the given id(s). You can