We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6ed636 commit c3cbe59Copy full SHA for c3cbe59
expand.py
@@ -111,7 +111,7 @@ def output_file(filename):
111
print(output_header, file=f)
112
for i in output_data:
113
print(i, file=f)
114
- output_data = subprocess.run(["rustfmt", temp_file])
+ output_data = subprocess.run(["rustfmt", temp_file], check=True)
115
with open(temp_file, 'r') as f:
116
for line in f:
117
print(line, end="")
0 commit comments