We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
argparse.Namespace
1 parent 9bc16e3 commit a47d392Copy full SHA for a47d392
utils/build-script
@@ -14,6 +14,7 @@ The ultimate tool for building Swift.
14
"""
15
16
17
+from argparse import Namespace
18
import json
19
import os
20
import platform
@@ -187,7 +188,7 @@ def tar(source, destination):
187
188
# -----------------------------------------------------------------------------
189
# Argument Validation
190
-def validate_arguments(toolchain, args):
191
+def validate_arguments(toolchain, args: Namespace):
192
if toolchain.cc is None or toolchain.cxx is None:
193
fatal_error(
194
"can't find clang (please install clang-3.5 or a "
0 commit comments