Skip to content

Commit

Permalink
formatted with black
Browse files Browse the repository at this point in the history
  • Loading branch information
maleiter authored and LarsAsplund committed Jun 22, 2024
1 parent ba1f56e commit 76e9732
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vunit/sim_if/activehdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 76e9732

Please sign in to comment.