From e05ec6ff9f9f60b4439c5ef451521302debca5e9 Mon Sep 17 00:00:00 2001 From: Volker Theile Date: Wed, 8 Apr 2020 09:55:05 +0200 Subject: [PATCH] mgr/dashboard: lint error on plugins/debug.py Make pylint for Python 3.8 and older versions happy. Fixes: https://tracker.ceph.com/issues/44589 Signed-off-by: Volker Theile (cherry picked from commit 45076ed13a809c8d0837e72700647f1cecc3298d) --- src/pybind/mgr/dashboard/plugins/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/plugins/debug.py b/src/pybind/mgr/dashboard/plugins/debug.py index 71e56abc6460b..d5719157bc44f 100644 --- a/src/pybind/mgr/dashboard/plugins/debug.py +++ b/src/pybind/mgr/dashboard/plugins/debug.py @@ -21,7 +21,7 @@ class Actions(Enum): @PM.add_plugin # pylint: disable=too-many-ancestors -class Debug(SP, I.CanCherrypy, I.ConfiguresCherryPy): +class Debug(SP, I.CanCherrypy, I.ConfiguresCherryPy): # pylint: disable=too-many-ancestors NAME = 'debug' OPTIONS = [ -- 2.39.5