Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aolofsson committed Jan 6, 2024
1 parent 30351f9 commit 69f0504
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lambdalib/ramlib/ramlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
import siliconcompiler
from siliconcompiler.flows import lintflow


def setup(chip, path=None):

# setup verilog
files = glob.glob(f'rtl/*.v')
files = glob.glob('rtl/*.v')
for item in files:
chip.input(item)

###########################

if __name__ == "__main__":

design = "la_syncfifo"
Expand Down
6 changes: 3 additions & 3 deletions lambdalib/stdlib/stdlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
import siliconcompiler
from siliconcompiler.flows import lintflow


def setup(chip, path=None):

# setup verilog
files = glob.glob(f'rtl/*.v')
files = glob.glob('rtl/*.v')
for item in files:
chip.input(item)

###########################

if __name__ == "__main__":

design = "la_inv"
Expand Down

0 comments on commit 69f0504

Please sign in to comment.