"git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "20866b06833eea1802833b6708ed14fb0af764e3"
Commit d4c472cc authored by Kai Chen's avatar Kai Chen
Browse files

remove debug comments

parent cbcb90dc
...@@ -104,15 +104,7 @@ def concat_list(in_list): ...@@ -104,15 +104,7 @@ def concat_list(in_list):
Returns: Returns:
list: The concatenated flat list. list: The concatenated flat list.
""" """
# if len(in_list) == 1:
# return in_list[0]
# else:
# return list(itertools.chain(*in_list))
return list(itertools.chain(*in_list)) return list(itertools.chain(*in_list))
# out_list = []
# for sub_list in in_list:
# out_list.extend(sub_list)
# return out_list
def check_prerequisites( def check_prerequisites(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment