Skip to content

Commit 73ec8e1

Browse files
committed
[system] Linting
1 parent d0f98c5 commit 73ec8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sebs/benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)