big pep8 whitespace cleanup
[pinmux.git] / src / spec / base.py
index 1f241b0dae870a41b375fcc867fc1e8334d71f56..ba0ce10311d8995026efc9e21bd8d327e72a7d70 100644 (file)
@@ -31,7 +31,7 @@ class PinSpec(Pinouts):
         self.scenarios.append((name, needed, eint, pwm, descriptions))
 
     def write(self, of):
-        of.write ("""# Pinouts (PinMux)
+        of.write("""# Pinouts (PinMux)
 auto-generated by [[pinouts.py]]
 
 [[!toc  ]]
@@ -39,10 +39,10 @@ auto-generated by [[pinouts.py]]
 """)
         display(of, self)
 
-        of.write ("\n# Pinouts (Fixed function)\n\n")
+        of.write("\n# Pinouts (Fixed function)\n\n")
         fixedpins = display_fixed(of, self.fixedpins, len(self))
 
-        of.write ("""# Functions (PinMux)
+        of.write("""# Functions (PinMux)
 
 auto-generated by [[pinouts.py]]
 
@@ -57,8 +57,7 @@ auto-generated by [[pinouts.py]]
                                           needed, eint, pwm,
                                           descriptions)
 
-
-        of.write ("""# Reference Datasheets
+        of.write("""# Reference Datasheets
 
 datasheets and pinout links
 * <http://datasheets.chipdb.org/AMD/8018x/80186/amd-80186.pdf>
@@ -74,4 +73,3 @@ datasheets and pinout links
 """)
 
         return self, self.bankspec, self.pinbanks, fixedpins
-