mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
Description: Format all python files under onnxruntime with black and isort. After checking in, we can use .git-blame-ignore-revs to ignore the formatting PR in git blame. #11315, #11316
6 lines
127 B
Python
6 lines
127 B
Python
import os
|
|
import sys
|
|
|
|
cmd = "/workspace/onnxruntime_training_bert {}".format(" ".join(sys.argv[1:]))
|
|
print(cmd)
|
|
os.system(cmd)
|