Skip to content

Commit 8a33745

Browse files
authored
Merge pull request #5 from 1138-4EB/master
fix lint
2 parents c097208 + 4bb0f97 commit 8a33745

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)