Skip to content

Commit

Permalink
Fix a lint warning
Browse files Browse the repository at this point in the history
Summary: Might as well.

Reviewed By: blackm00n

Differential Revision: D58132750

fbshipit-source-id: 279940b2ff5e84790cef49f6923a2155b67454e4
  • Loading branch information
ndmitchell authored and facebook-github-bot committed Jun 4, 2024
1 parent 564cbce commit f788f51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions toolchains/conan/conan_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ def write_targets(update_label, lock_generate, conan_generate, targets_out):
with open(targets_out, "w") as outf:
outf.write(header)
with open(lock_generate, "r") as inf:
for l in inf:
outf.write(l)
for x in inf:
outf.write(x)
with open(conan_generate, "r") as inf:
for l in inf:
outf.write(l)
for x in inf:
outf.write(x)


def main():
Expand Down

0 comments on commit f788f51

Please sign in to comment.