We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f472801 commit 137f056Copy full SHA for 137f056
dataikuapi/fm/tenant.py
@@ -27,7 +27,7 @@ def set_static_license(self, license_file=None, license_string=None):
27
with open(license_file) as json_file:
28
license = json.load(json_file)
29
elif license_string is not None:
30
- license = json.load(license_string)
+ license = json.loads(license_string)
31
else:
32
raise ValueError(
33
"a valid license_file or license_string needs to be provided"
0 commit comments