Skip to content

Commit 60dcc1e

Browse files
committed
format
1 parent d791841 commit 60dcc1e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Tools/jit/build.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@
2323
"-f", "--force", action="store_true", help="force the entire JIT to be rebuilt"
2424
)
2525
parser.add_argument(
26-
"-o", "--output-dir", help="where to output generated files", required=True, type=lambda p: pathlib.Path(p).resolve()
26+
"-o",
27+
"--output-dir",
28+
help="where to output generated files",
29+
required=True,
30+
type=lambda p: pathlib.Path(p).resolve(),
2731
)
2832
parser.add_argument(
29-
"-p", "--pyconfig-dir", help="where to find pyconfig.h", required=True, type=lambda p: pathlib.Path(p).resolve()
33+
"-p",
34+
"--pyconfig-dir",
35+
help="where to find pyconfig.h",
36+
required=True,
37+
type=lambda p: pathlib.Path(p).resolve(),
3038
)
3139
parser.add_argument(
3240
"-v", "--verbose", action="store_true", help="echo commands as they are run"
@@ -36,7 +44,7 @@
3644
target.debug = args.debug
3745
target.force = args.force
3846
target.verbose = args.verbose
39-
target.pyconfig=args.pyconfig_dir / "pyconfig.h"
47+
target.pyconfig = args.pyconfig_dir / "pyconfig.h"
4048
target.build(
4149
comment=comment,
4250
force=args.force,

0 commit comments

Comments
 (0)