Skip to content

Commit 07f81c8

Browse files
committed
fix python formatting
1 parent 8a4d706 commit 07f81c8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/black.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: python-black
1+
name: black
22
on: [push, pull_request]
33
jobs:
44
linter_name:

problems/verilog-language/basics/multi-wire/tb/multi_wire.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ async def is_equal_check(self):
6161
if int(self.z.value) != int(self.c.value):
6262
raise DataError(
6363
f"z and c should be equal, but {self.z.value} != {self.c.value}."
64-
)
64+
)

problems/verilog-language/basics/multi-wire/tb/test_multi_wire.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async def output_stays_equal(dut):
1919
]
2020

2121
tb.log.info("Checking output value...")
22-
22+
2323
for i in range(len(test_vals)):
2424
tb.set_input_vals(test_vals[i])
2525
tb.is_equal_check()

problems/verilog-language/basics/simple-wire/tb/simple_wire.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ async def is_equal_check(self):
3636
if int(self.i.value) != int(self.o.value):
3737
raise DataError(
3838
f"Output should be equal, but {self.i.value} != {self.o.value}."
39-
)
39+
)

problems/verilog-language/basics/simple-wire/tb/test_simple_wire.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async def output_stays_equal(dut):
1414
test_vals = [0, 1, 1, 0, 1, 0]
1515

1616
tb.log.info("Checking output value...")
17-
17+
1818
for i in range(len(test_vals)):
1919
tb.set_input_val(test_vals[i])
2020
tb.is_equal_check()

0 commit comments

Comments
 (0)