File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ def add_deployment_package_python(self, output_dir):
362362
363363 destination_file = f"requirements.txt.{ self ._language_version } "
364364 if not os .path .exists (os .path .join (output_dir , destination_file )):
365- destination_file = f "requirements.txt"
365+ destination_file = "requirements.txt"
366366
367367 # append to the end of requirements file
368368 with open (os .path .join (output_dir , destination_file ), "a" ) as out :
@@ -390,7 +390,7 @@ def add_deployment_package_nodejs(self, output_dir):
390390
391391 package_config = os .path .join (output_dir , f"package.json.{ self ._language_version } " )
392392 if not os .path .exists (package_config ):
393- package_config = os .path .join (output_dir , f "package.json" )
393+ package_config = os .path .join (output_dir , "package.json" )
394394
395395 with open (package_config , "r" ) as package_file :
396396 package_json = json .load (package_file )
You can’t perform that action at this time.
0 commit comments