From 59789c823dcbbd0452421ad3c68d568e54f32c3a Mon Sep 17 00:00:00 2001 From: Jake Hunsaker Date: Thu, 26 Mar 2020 17:07:06 -0400 Subject: [options] Drop explicit subclass of object For the 3.x line, many classes subclassed `object` directly, in order to use the 'new-style' objects introduced with python3, while still maintaining python2 functionality. As sos-4.0 is python3 only, we no longer need to do this. Signed-off-by: Jake Hunsaker --- sos/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/options.py b/sos/options.py index 126c5791..4631ac75 100644 --- a/sos/options.py +++ b/sos/options.py @@ -16,7 +16,7 @@ def _is_seq(val): return val_type is list or val_type is tuple -class SoSOptions(object): +class SoSOptions(): def _merge_opt(self, opt, src, is_default): def _unset(val): -- cgit