@@ -1088,7 +1088,7 @@ def install_pip_requirements(query, requirements_file, tmp_dir):
1088
1088
ok = True
1089
1089
elif docker_file or docker_build_root :
1090
1090
raise ValueError (
1091
- "docker_image must be specified " " for a custom image future references"
1091
+ "docker_image must be specified for a custom image future references"
1092
1092
)
1093
1093
1094
1094
working_dir = os .getcwd ()
@@ -1108,7 +1108,7 @@ def install_pip_requirements(query, requirements_file, tmp_dir):
1108
1108
elif OSX :
1109
1109
# Workaround for OSX when XCode command line tools'
1110
1110
# python becomes the main system python interpreter
1111
- os_path = "{}:/Library/Developer/CommandLineTools" " /usr/bin" .format (
1111
+ os_path = "{}:/Library/Developer/CommandLineTools/usr/bin" .format (
1112
1112
os .environ ["PATH" ]
1113
1113
)
1114
1114
subproc_env = os .environ .copy ()
@@ -1390,7 +1390,7 @@ def install_npm_requirements(query, requirements_file, tmp_dir):
1390
1390
ok = True
1391
1391
elif docker_file or docker_build_root :
1392
1392
raise ValueError (
1393
- "docker_image must be specified " " for a custom image future references"
1393
+ "docker_image must be specified for a custom image future references"
1394
1394
)
1395
1395
1396
1396
log .info ("Installing npm requirements: %s" , requirements_file )
@@ -1649,7 +1649,7 @@ def prepare_command(args):
1649
1649
timestamp = timestamp_now_ns ()
1650
1650
was_missing = True
1651
1651
else :
1652
- timestamp = "<WARNING: Missing lambda zip artifacts " " wouldn't be restored>"
1652
+ timestamp = "<WARNING: Missing lambda zip artifacts wouldn't be restored>"
1653
1653
1654
1654
# Replace variables in the build command with calculated values.
1655
1655
build_data = {
0 commit comments