mirror of https://github.com/openXC7/prjxray.git
Run make format.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
c595847739
commit
980ce529d8
|
|
@ -30,9 +30,13 @@ def main():
|
|||
a_json_base)) as a_json_out, tempfile.NamedTemporaryFile(
|
||||
suffix="_b_{}".format(a_json_base)) as b_json_out:
|
||||
subprocess.check_call(
|
||||
"python3 -m utils.xjson {}".format(a_json_in), shell=True, stdout=a_json_out)
|
||||
"python3 -m utils.xjson {}".format(a_json_in),
|
||||
shell=True,
|
||||
stdout=a_json_out)
|
||||
subprocess.check_call(
|
||||
"python3 -m utils.xjson {}".format(b_json_in), shell=True, stdout=b_json_out)
|
||||
"python3 -m utils.xjson {}".format(b_json_in),
|
||||
shell=True,
|
||||
stdout=b_json_out)
|
||||
|
||||
print("Comparing {}".format(a_json_base))
|
||||
subprocess.call(
|
||||
|
|
|
|||
Loading…
Reference in New Issue