Skip to content

Commit 4bb0f97

Browse files
author
1138-4EB
committed
fix lint
1 parent c097208 commit 4bb0f97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

VUnit/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
lib.add_source_files(join(root, "../vhdl/JSON.pkg.vhdl"))
1010
lib.add_source_files(join(root, "../Examples/Boards_VUnit.vhdl"))
1111

12-
vu.set_generic('tb_cfg_file', '../Data/Boards2.json' )
12+
vu.set_generic('tb_cfg_file', '../Data/Boards2.json')
1313

1414
import json
1515
file = open('../Data/Boards1.json', 'r')
1616
generics = json.loads(file.read())
17-
vu.set_generic("tb_cfg", json.dumps(generics, separators=(',', ':')) )
17+
vu.set_generic("tb_cfg", json.dumps(generics, separators=(',', ':')))
1818

1919
vu.main()

0 commit comments

Comments
 (0)