Skip to content

Commit

Permalink
Fix issue loading info models
Browse files Browse the repository at this point in the history
  • Loading branch information
eplesiat committed Jan 23, 2024
1 parent 8dc4f4e commit 76ca1db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions duck/processes/wps_clintai.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
INFO_ROLE = "https://clint.dkrz.de/spec/crai/info"

models_list = list(craimodels.info_models().keys())
info_models = yaml.safe_load(craimodels.metadata())
info_models_string = json.dumps(info_models, separators=(',', ':'))
info_models_string = json.dumps(craimodels.metadata(), separators=(',', ':'))

class ClintAI(Process):
def __init__(self):
Expand Down

0 comments on commit 76ca1db

Please sign in to comment.