Skip to content

Commit 7038965

Browse files
committed
Fix line length lint in runner.py
1 parent cfbbf25 commit 7038965

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

backends/test/suite/runner.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ def build_result(
234234
tester.stages[StageType.SERIALIZE].dump_artifact(pte_path)
235235
logger.info(f"Saved golden .pte to {pte_path}")
236236
except Exception:
237-
logger.warning(f"Failed to save .pte for {artifact_name}", exc_info=True)
237+
logger.warning(
238+
f"Failed to save .pte for {artifact_name}", exc_info=True
239+
)
238240
else:
239241
# Skip the test if nothing is delegated
240242
return build_result(TestResult.SUCCESS_UNDELEGATED)

0 commit comments

Comments
 (0)