We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e089ac5 commit 1d4dfabCopy full SHA for 1d4dfab
install_requirements.py
@@ -126,7 +126,7 @@ def main(args):
126
for pybind_arg in args.pybind:
127
if pybind_arg not in VALID_PYBINDS:
128
raise Exception(
129
- f"Unrecognized pybind argument {pybind_arg}; valid options are: {", ".join(VALID_PYBINDS)}"
+ f"Unrecognized pybind argument {pybind_arg}; valid options are: {', '.join(VALID_PYBINDS)}"
130
)
131
EXECUTORCH_BUILD_PYBIND = "ON"
132
CMAKE_ARGS += f" -DEXECUTORCH_BUILD_{pybind_arg.upper()}=ON"
0 commit comments