lint round two

This commit is contained in:
James
2025-12-22 14:27:14 -08:00
parent 0211dcbb8a
commit 8b6211b100
3 changed files with 4 additions and 8 deletions

View File

@@ -196,9 +196,7 @@ def get_arguments():
def create_procyon_command(test_option, process_name, device_id):
"""create command string"""
command = (
f'"{ABS_EXECUTABLE_PATH}" --definition={test_option} --export="{RESULTS_XML_PATH}"'
)
command = f'"{ABS_EXECUTABLE_PATH}" --definition={test_option} --export="{RESULTS_XML_PATH}"'
match process_name:
case "ort-directml.exe":

View File

@@ -146,9 +146,7 @@ def get_arguments():
def create_procyon_command(test_option):
"""create command string"""
command = (
f'"{ABS_EXECUTABLE_PATH}" --definition={test_option} --export="{RESULTS_XML_PATH}"'
)
command = f'"{ABS_EXECUTABLE_PATH}" --definition={test_option} --export="{RESULTS_XML_PATH}"'
command = command.rstrip()
return command