@@ -1088,7 +1088,7 @@ def install_pip_requirements(query, requirements_file, tmp_dir):
10881088 ok = True
10891089 elif docker_file or docker_build_root :
10901090 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"
10921092 )
10931093
10941094 working_dir = os .getcwd ()
@@ -1108,7 +1108,7 @@ def install_pip_requirements(query, requirements_file, tmp_dir):
11081108 elif OSX :
11091109 # Workaround for OSX when XCode command line tools'
11101110 # 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 (
11121112 os .environ ["PATH" ]
11131113 )
11141114 subproc_env = os .environ .copy ()
@@ -1390,7 +1390,7 @@ def install_npm_requirements(query, requirements_file, tmp_dir):
13901390 ok = True
13911391 elif docker_file or docker_build_root :
13921392 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"
13941394 )
13951395
13961396 log .info ("Installing npm requirements: %s" , requirements_file )
@@ -1649,7 +1649,7 @@ def prepare_command(args):
16491649 timestamp = timestamp_now_ns ()
16501650 was_missing = True
16511651 else :
1652- timestamp = "<WARNING: Missing lambda zip artifacts " " wouldn't be restored>"
1652+ timestamp = "<WARNING: Missing lambda zip artifacts wouldn't be restored>"
16531653
16541654 # Replace variables in the build command with calculated values.
16551655 build_data = {
0 commit comments