Skip to content

Commit

Permalink
blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
4a6f656c committed Oct 25, 2024
1 parent c673ee5 commit 90854e6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,16 @@ def signed(value, width):
print(f"Running with args : {sys.argv}")

extensions = sys.argv[1:]
for i in ["-c", "-chisel", "-go", "-latex", "-pseudo" "-rust", "-spinalhdl", "-sverilog"]:
for i in [
"-c",
"-chisel",
"-go",
"-latex",
"-pseudo",
"-rust",
"-spinalhdl",
"-sverilog",
]:
if i in extensions:
extensions.remove(i)
print(f"Extensions selected : {extensions}")
Expand Down

0 comments on commit 90854e6

Please sign in to comment.