From: Kefu Chai Date: Thu, 14 Jan 2021 04:53:19 +0000 (+0800) Subject: mgr/dashboard: disable unsubscriptable-object warning from pylint X-Git-Tag: v16.1.0~20^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2c3e1926de3876139d469896206362fe28a87b1f;p=ceph.git mgr/dashboard: disable unsubscriptable-object warning from pylint see https://github.com/PyCQA/pylint/issues/3882 Signed-off-by: Kefu Chai --- diff --git a/src/pybind/mgr/dashboard/.pylintrc b/src/pybind/mgr/dashboard/.pylintrc index f4cd20ec9c1d..79dfbad7d961 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