autopep8, whitespace
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 22 Mar 2018 19:12:04 +0000 (19:12 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 22 Mar 2018 19:12:04 +0000 (19:12 +0000)
src/actual_pinmux.py
src/pinmux_generator.py

index ce1797d823b72faa54eb557a063ffc23079b12b2..e564f6734967d4a1e516bd18d656e5e67b608bc2 100644 (file)
@@ -37,7 +37,7 @@ dedicated_wire = '''
       endrule
 '''
 # ============================================================
-digits = maketrans('0123456789', ' '*10)  # delete space later
+digits = maketrans('0123456789', ' ' * 10)  # delete space later
 
 
 def cn(idx):
index a0ba7fd2735265a7a05d47cc1cf5e01798dd5272..6147eb7ed1b345dc717758784000c4394a3fd741 100644 (file)
@@ -44,7 +44,7 @@ copyright = '''
    Date of generation: ''' + time.strftime("%c") + '''
 */
 '''
-header = copyright+'''
+header = copyright + '''
 package pinmux;
 
    typedef struct{
@@ -150,7 +150,7 @@ with open("./bsv_src/pinmux.bsv", "w") as bsv_file:
     # ======================================================================
 
 with open('bsv_src/PinTop.bsv', 'w') as bsv_file:
-    bsv_file.write(copyright+'''
+    bsv_file.write(copyright + '''
 package PinTop;
     import pinmux::*;
     interface Ifc_PintTop;