From 76e9732bae9a69d937a1e8e4fc89a788ce0e5529 Mon Sep 17 00:00:00 2001 From: Markus Leiter Date: Sat, 22 Jun 2024 15:57:10 +0200 Subject: [PATCH] formatted with black --- vunit/sim_if/activehdl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vunit/sim_if/activehdl.py b/vunit/sim_if/activehdl.py index 2d8fe7517..521b8cfae 100644 --- a/vunit/sim_if/activehdl.py +++ b/vunit/sim_if/activehdl.py @@ -467,8 +467,8 @@ def _create_user_init_function(self, config): init_file = config.sim_options.get(opt_name, None) tcl = "proc vunit_user_init {} {\n" if init_file is not None: - tcl += f'set vunit_tb_name {config.design_unit_name}\n' - tcl += f'set vunit_tb_path {fix_path(str(Path(config.tb_path).resolve()))}\n' + tcl += f"set vunit_tb_name {config.design_unit_name}\n" + tcl += f"set vunit_tb_path {fix_path(str(Path(config.tb_path).resolve()))}\n" tcl += f'source "{fix_path(str(Path(init_file).resolve()))!s}"\n' tcl += " return 0\n" tcl += "}\n"