This commit is contained in:
jackhanyuan
2022-03-13 15:23:56 +08:00
committed by Junhao Liang
parent 9ae1194163
commit 9c1aed2c87
2 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -42,4 +42,6 @@ if __name__ == '__main__':
args = parser.parse_args()
rearrange(Path(args.input_path), Path(args.output_path))
input_path = Path(args.input_path).resolve()
output_path = Path(args.output_path).resolve()
rearrange(input_path, output_path)