Skip to content

Commit 1a40c4e

Browse files
committed
Fix python 2.7 incompatibility
[ch64060]
1 parent 8439235 commit 1a40c4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataikuapi/dss/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,7 @@ class DSSInstanceVariables(dict):
956956
"""
957957

958958
def __init__(self, client, variables):
959-
super().__init__()
959+
super(dict, self).__init__()
960960
self.update(variables)
961961
self.client = client
962962

0 commit comments

Comments
 (0)