From f13f9f9fc13e2824416292a448e244e3ae46702a Mon Sep 17 00:00:00 2001 From: Jos Collin Date: Fri, 23 Aug 2019 15:29:27 +0530 Subject: [PATCH] qa/tasks: drop object inherit Signed-off-by: Jos Collin --- qa/tasks/mds_thrash.py | 2 +- qa/tasks/rbd_mirror_thrash.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/mds_thrash.py b/qa/tasks/mds_thrash.py index e42a76c5220..e5d86e65b5d 100644 --- a/qa/tasks/mds_thrash.py +++ b/qa/tasks/mds_thrash.py @@ -18,7 +18,7 @@ from tasks.thrasher import Thrasher log = logging.getLogger(__name__) -class MDSThrasher(Greenlet, Thrasher, object): +class MDSThrasher(Greenlet, Thrasher): """ MDSThrasher:: diff --git a/qa/tasks/rbd_mirror_thrash.py b/qa/tasks/rbd_mirror_thrash.py index 7ca1a6d1d70..fceb5cfeb98 100644 --- a/qa/tasks/rbd_mirror_thrash.py +++ b/qa/tasks/rbd_mirror_thrash.py @@ -22,7 +22,7 @@ from tasks.thrasher import Thrasher log = logging.getLogger(__name__) -class RBDMirrorThrasher(Greenlet, Thrasher, object): +class RBDMirrorThrasher(Greenlet, Thrasher): """ RBDMirrorThrasher:: -- 2.39.5