Skip to content

Commit

Permalink
remove obsolete and broken object.__init__()
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed Sep 19, 2018
1 parent 596b110 commit b1c3e6f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions plone/schemaeditor/browser/schema/traversal.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ class SchemaContext(SimpleItem):
enableFieldsets = True

def __init__(self, context, request, name=u'schema', title=None):
if six.PY2:
super(SchemaContext, self).__init__(context, request)
else:
super().__init__()
self.schema = context
self.request = request

Expand Down

0 comments on commit b1c3e6f

Please sign in to comment.