Skip to content

Commit 137f056

Browse files
committed
typo
1 parent f472801 commit 137f056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataikuapi/fm/tenant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def set_static_license(self, license_file=None, license_string=None):
2727
with open(license_file) as json_file:
2828
license = json.load(json_file)
2929
elif license_string is not None:
30-
license = json.load(license_string)
30+
license = json.loads(license_string)
3131
else:
3232
raise ValueError(
3333
"a valid license_file or license_string needs to be provided"

0 commit comments

Comments
 (0)