Apply 'make format'

This commit is contained in:
github action 2026-03-31 21:25:43 +00:00
parent 8895f96e41
commit 7236ffa38a
3 changed files with 3 additions and 4 deletions

View File

@ -2635,8 +2635,7 @@ class VlTest:
self.error("Unknown trace file format " + traceFn)
@staticmethod
def _vcd_parse_header(filename: str,
root_scope: 'str | None' = None) -> 'tuple[dict, dict]':
def _vcd_parse_header(filename: str, root_scope: 'str | None' = None) -> 'tuple[dict, dict]':
"""Parse VCD header into hierarchy data and signal-code mapping.
Returns (hier_data, var_codes) where:

View File

@ -8,7 +8,7 @@
def run(test):
(fmt,) = test.parse_name(r"t_trace_split_struct_([a-z]+)")
(fmt, ) = test.parse_name(r"t_trace_split_struct_([a-z]+)")
test.top_filename = "t/t_trace_split_struct.v"
test.golden_filename = test.py_filename.rpartition(fmt)[0] + fmt + ".out"

View File

@ -8,7 +8,7 @@
def run(test):
(fmt,) = test.parse_name(r"t_trace_struct_alias_([a-z]+)")
(fmt, ) = test.parse_name(r"t_trace_struct_alias_([a-z]+)")
test.top_filename = "t/t_trace_struct_alias.v"
test.golden_filename = test.py_filename.rpartition(fmt)[0] + fmt + ".out"