Skip to content

Commit e38ea7f

Browse files
shadtorrievaughnbetz
authored andcommitted
fixing pylint issue
1 parent 376ec15 commit e38ea7f

File tree

1 file changed

+5
-2
lines changed
  • vtr_flow/scripts/python_libs/vtr/vpr

1 file changed

+5
-2
lines changed

vtr_flow/scripts/python_libs/vtr/vpr/vpr.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,13 @@ def run(
219219
#Extra options to fine-tune LeakSanitizer (LSAN) behaviour.
220220
#Note that if VPR was compiled without LSAN these have no effect
221221
# 'suppressions=...' Add the LeakSanitizer (LSAN) suppression file
222-
# 'exitcode=12' Use a consistent exitcode (on some systems LSAN don't use the default exit code of 23)
222+
# 'exitcode=12' Use a consistent exitcode
223+
# (on some systems LSAN don't use the default exit code of 23)
223224
# 'fast_unwind_on_malloc=0' Provide more accurate leak stack traces
224225

225-
environ["LSAN_OPTIONS"] = "suppressions={} exitcode=23 fast_unwind_on_malloc=0".format(find_vtr_file("lsan.supp"))\
226+
environ["LSAN_OPTIONS"] = (
227+
"suppressions={} exitcode=23 fast_unwind_on_malloc=0".format(find_vtr_file("lsan.supp"))
228+
)
226229

227230
command_runner.run_system_command(
228231
cmd, temp_dir=temp_dir, log_filename=log_filename, indent_depth=1

0 commit comments

Comments
 (0)