Skip to content

Commit 4d326d5

Browse files
authored
Fix incorrectly linted build command (#709)
1 parent 85b9531 commit 4d326d5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

hls4ml/backends/vivado/vivado_backend.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -189,13 +189,13 @@ def build(
189189
curr_dir = os.getcwd()
190190
os.chdir(model.config.get_output_dir())
191191
vivado_cmd = (
192-
f'vivado_hls -f build_prj.tcl "reset={reset}'
193-
f'csim={csim}'
194-
f'synth={synth}'
195-
f'cosim={cosim}'
196-
f'validation={validation}'
197-
f'export={export}'
198-
f'vsynth={vsynth}'
192+
f'vivado_hls -f build_prj.tcl "reset={reset} '
193+
f'csim={csim} '
194+
f'synth={synth} '
195+
f'cosim={cosim} '
196+
f'validation={validation} '
197+
f'export={export} '
198+
f'vsynth={vsynth} '
199199
f'fifo_opt={fifo_opt}"'
200200
)
201201
os.system(vivado_cmd)

0 commit comments

Comments
 (0)