from local

This commit is contained in:
dohe0342 2023-01-27 17:43:32 +09:00
parent 42b980c7fb
commit 3226396204
2 changed files with 2 additions and 1 deletions

View File

@ -803,7 +803,8 @@ def main():
res_dict = {}
for res in results:
res_dict[res[0]] = ' '.join(res[2])
res_dict = sorted(res_dict.items(), key=lambda x:x[0])
for k, v in res_dict.items():
print(k, v)
exit()