Skip to content

Commit e68f537

Browse files
r-barnesmeta-codesync[bot]
authored andcommitted
Fix a minor lint issue in fbcode/opensource/fbcode_builder/getdeps/fetcher.py
Reviewed By: sahilsd Differential Revision: D93795907 fbshipit-source-id: 5816808e064e72d7a99099b4985a3cf09c14f6a8
1 parent 85fb1b9 commit e68f537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/fbcode_builder/getdeps/fetcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ def st_dev(path):
519519
change_status.record_change(name)
520520

521521
with open(installed_name, "wb") as f:
522-
for name in sorted(list(full_file_list)):
522+
for name in sorted(full_file_list):
523523
f.write(("%s\n" % name).encode("utf-8"))
524524

525525
return change_status

0 commit comments

Comments
 (0)