Skip to content
Snippets Groups Projects
Commit 8c503480 authored by Theophile GENTILHOMME's avatar Theophile GENTILHOMME
Browse files

Fix incorrect loading behaviour for Cmc scores

parent 884a6395
Branches
Tags
2 merge requests!146Add 4-5-col files related functionalities and add click commands,!143Set of click commands for bio base
Pipeline #
......@@ -441,11 +441,7 @@ def load_files(filenames, func_load):
res = []
for filepath in filenames:
try:
tmp = func_load(filepath)
if isinstance(tmp, list):
res += func_load(filepath)
else:
res.append(tmp)
res.append(func_load(filepath))
except:
raise
return res
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment