From 6668e43d2d67db4574e08a9d54bd80eb105c1b28 Mon Sep 17 00:00:00 2001 From: Sergey Maranchuk Date: Fri, 17 Apr 2020 22:12:06 +0300 Subject: inheriting from `object` not necessary in py3 --- tests/test_config/test_actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_config/test_actions.py') diff --git a/tests/test_config/test_actions.py b/tests/test_config/test_actions.py index aa86f3792..b1f4b4b99 100644 --- a/tests/test_config/test_actions.py +++ b/tests/test_config/test_actions.py @@ -1072,7 +1072,7 @@ def _conflictFunctions(e): yield confinst.function -class DummyActionState(object): +class DummyActionState: autocommit = False info = '' @@ -1083,7 +1083,7 @@ class DummyActionState(object): self.actions.append((arg, kw)) -class DummyIntrospectable(object): +class DummyIntrospectable: def __init__(self): self.registered = [] -- cgit v1.2.3