summaryrefslogtreecommitdiffstats
path: root/ipalib/request.py
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2018-09-26 11:59:50 +0200
committerChristian Heimes <cheimes@redhat.com>2018-09-27 11:49:04 +0200
commitb431e9b684df11c811892bd9d2a5711355f0076e (patch)
tree77a831532933ea9c289529e1974300c7be276a18 /ipalib/request.py
parent4a58adf79e8b6b1dfbd534f16bcec368a189131e (diff)
downloadfreeipa-b431e9b684df11c811892bd9d2a5711355f0076e.tar.gz
freeipa-b431e9b684df11c811892bd9d2a5711355f0076e.tar.xz
freeipa-b431e9b684df11c811892bd9d2a5711355f0076e.zip
Py3: Remove subclassing from object
Python 2 had old style and new style classes. Python 3 has only new style classes. There is no point to subclass from object any more. See: https://pagure.io/freeipa/issue/7715 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
Diffstat (limited to 'ipalib/request.py')
-rw-r--r--ipalib/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/request.py b/ipalib/request.py
index 5e5f01975..b3d4a04f0 100644
--- a/ipalib/request.py
+++ b/ipalib/request.py
@@ -33,7 +33,7 @@ from ipalib.constants import CALLABLE_ERROR
context = threading.local()
-class _FrameContext(object):
+class _FrameContext:
pass