Skip to content

Commit 33328b5

Browse files
committed
apply more ruff fixes
1 parent 7a1cd77 commit 33328b5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/file_packager.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def generate_object_file(data_files):
286286
# The name of file
287287
{f.c_symbol_name}_name:
288288
.asciz "{dstpath}"
289-
.size {f.c_symbol_name}_name, {len(dstpath)+1}
289+
.size {f.c_symbol_name}_name, {len(dstpath) + 1}
290290
291291
# The size of the file followed by the content itself
292292
{f.c_symbol_name}:
@@ -601,7 +601,6 @@ def was_seen(name):
601601
f.write(escape_for_makefile(dependency))
602602
f.write(' \\\n')
603603

604-
605604
return 0
606605

607606

0 commit comments

Comments
 (0)