Skip to content

Commit

Permalink
fixes #23
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Jan 17, 2024
1 parent b059826 commit c1badec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcm/dcm_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def from_definition_string(
debug_file_path = os.path.join('/tmp', f'{name}.json')
with open(debug_file_path, 'w') as debug_file:
json.dump(data, debug_file, indent=2,default=str)
content = content_class.from_dict(data)
content = content_class.from_dict(data)
if isinstance(content, CompetenceTree):
return DynamicCompetenceMap(content)
else:
Expand Down

0 comments on commit c1badec

Please sign in to comment.