1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-08 18:02:05 +03:00

getdeps: code formatting

Summary:
Our linter really wants to include formatting changes unrelated
to my diff stack.

This is a formatting only change to avoid clouding my diffs; no functional
effect.

Reviewed By: xavierd

Differential Revision: D21364519

fbshipit-source-id: 7670dd4154e788f593f256aabdfdeef6d17aeec4
This commit is contained in:
Wez Furlong
2020-05-04 17:42:38 -07:00
committed by Facebook GitHub Bot
parent 74541a941f
commit d334c275f6
2 changed files with 3 additions and 3 deletions

View File

@@ -578,9 +578,9 @@ class FixupDeps(ProjectCmdBase):
dep_munger.process_deps(args.destdir, args.final_install_prefix) dep_munger.process_deps(args.destdir, args.final_install_prefix)
def setup_project_cmd_parser(self, parser): def setup_project_cmd_parser(self, parser):
parser.add_argument("destdir", help=("Where to copy the fixed up executables")) parser.add_argument("destdir", help="Where to copy the fixed up executables")
parser.add_argument( parser.add_argument(
"--final-install-prefix", help=("specify the final installation prefix") "--final-install-prefix", help="specify the final installation prefix"
) )
parser.add_argument( parser.add_argument(
"--strip", "--strip",

View File

@@ -639,7 +639,7 @@ def download_url_to_file_with_progress(url, file_name):
end = time.time() end = time.time()
sys.stdout.write(" [Complete in %f seconds]\n" % (end - start)) sys.stdout.write(" [Complete in %f seconds]\n" % (end - start))
sys.stdout.flush() sys.stdout.flush()
print("%s" % (headers)) print(f"{headers}")
class ArchiveFetcher(Fetcher): class ArchiveFetcher(Fetcher):