Skip to content

Commit

Permalink
Fix Linting Issue
Browse files Browse the repository at this point in the history
Signed-off-by: fkwilken <[email protected]>
  • Loading branch information
fkwilken committed Feb 11, 2025
1 parent 5d56ae8 commit 3821ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openlane/steps/verilator.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def run(self, state_in: State, **kwargs) -> Tuple[ViewsUpdate, MetricsUpdate]:
extra_args.append("--Werror-LATCH")

if include_dirs := self.config["VERILOG_INCLUDE_DIRS"]:
include_flags = ["-I"+str(dir) for dir in include_dirs]
include_flags = ["-I" + str(dir) for dir in include_dirs]
extra_args.append(" ".join(include_flags))

for define in defines:
Expand Down

0 comments on commit 3821ebc

Please sign in to comment.