Skip to content

Commit a63f520

Browse files
committed
Fix lint errors in autotype filter
1 parent 0745cfb commit a63f520

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

fusesoc/filters/autotype.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,19 @@ def run(self, edam, work_root):
1212
".v": "verilogSource",
1313
".vhd": "vhdlSource",
1414
".vhdl": "vhdlSource",
15-
1615
# Vivado IP
1716
".xci": "xci",
1817
".bd": "bd",
19-
2018
# Verilator
2119
".vlt": "vlt",
22-
2320
# Design constraints
24-
".sdc": "SDC", # Synopsys-style
25-
".xdc": "xdc", # Vivado-style
26-
21+
".sdc": "SDC", # Synopsys-style
22+
".xdc": "xdc", # Vivado-style
2723
# Software
2824
".c": "cSource",
2925
".cpp": "cppSource",
30-
3126
# Scripts
3227
".tcl": "tclSource",
33-
3428
# Register map definitions
3529
".rdl": "systemRDL",
3630
}

0 commit comments

Comments
 (0)