format code
authorJacob Lifshay <programmerjake@gmail.com>
Thu, 2 Dec 2021 00:42:13 +0000 (16:42 -0800)
committerJacob Lifshay <programmerjake@gmail.com>
Thu, 2 Dec 2021 00:48:58 +0000 (16:48 -0800)
setup.py
src/openpower/sv/sv_analysis.py

index 5de8b0c4be0e5a8b9a3be2955d4636ee64d6cecd..8220279cb9285e1d19874aac42b2c2204c2dcf01 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ install_requires = [
     # https://git.libre-soc.org/?p=nmutil.git
     'libresoc-nmutil',
     # these should be fine
-    'pygdbmi', # gdb machine interfave
+    'pygdbmi',  # gdb machine interfave
     'ply',     # python lex yacc. very cool
     'astor',   # python AST manipulation
 ]
@@ -56,7 +56,7 @@ setup(
     install_requires=install_requires,
     tests_require=test_requires,
     test_suite='nose.collector',
-    entry_points = {
+    entry_points={
         'console_scripts': [
             'pywriter=openpower.decoder.pseudo.pywriter:pywriter',
             'pyfnwriter=openpower.decoder.pseudo.pyfnwriter:pyfnwriter',
index 25ca81d234a3a6ad1d0aabe0573cf8c487430267..f0a6601dbb35e40bc27c52a40a9a1752b36ce6a6 100644 (file)
@@ -764,6 +764,7 @@ def output(format, svt, csvcols, insns, csvs_svp64, stream):
         'minor_63l': 511,
         'minor_63h': 16,
     }
+
     def svp64_canonicalize(item):
         (value, csv) = item
         value = value.lower().replace("-", "_")
@@ -780,7 +781,7 @@ def output(format, svt, csvcols, insns, csvs_svp64, stream):
 
     # definitions
     sv_cols = ['sv_in1', 'sv_in2', 'sv_in3', 'sv_out', 'sv_out2',
-                'sv_cr_in', 'sv_cr_out']
+               'sv_cr_in', 'sv_cr_out']
     fullcols = csvcols + sv_cols
 
     entries_svp64 = defaultdict(list)
@@ -819,7 +820,7 @@ def output(format, svt, csvcols, insns, csvs_svp64, stream):
 if __name__ == '__main__':
     parser = argparse.ArgumentParser()
     parser.add_argument("-f", "--format",
-        type=Format, choices=Format, default=Format.VHDL,
-        help="format to be used (binutils or VHDL)")
+                        type=Format, choices=Format, default=Format.VHDL,
+                        help="format to be used (binutils or VHDL)")
     args = parser.parse_args()
     process_csvs(args.format)