Commit c8c84111 authored by Jan Kiene's avatar Jan Kiene
Browse files

format python files

parent 738a2a54
Loading
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -13,7 +13,9 @@ COLS = [

def main(args):
    linewise_logfiles = [args.wmops_logfile, args.ram_logfile, args.rom_logfile]
    changes_found_linewise = any([check_linewise_logfile(f, c) for f, c in zip(linewise_logfiles, COLS)])
    changes_found_linewise = any(
        [check_linewise_logfile(f, c) for f, c in zip(linewise_logfiles, COLS)]
    )

    if changes_found_linewise:
        print("Global max of WMOPS, RAM or ROM changed")
+31 −28
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@
accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and
the United Nations Convention on Contracts on the International Sales of Goods.
"""

import argparse


@@ -342,7 +343,9 @@ def create_display_strings(log_lines, references, split_char, which):


if __name__ == "__main__":
    parser = argparse.ArgumentParser(description="Generate Javascript code for the complexity webpage")
    parser = argparse.ArgumentParser(
        description="Generate Javascript code for the complexity webpage"
    )
    parser.add_argument("wmops_log")
    parser.add_argument("wmops_per_op_log")
    parser.add_argument("rom_log")
+27 −27

File changed.

Contains only whitespace changes.

+27 −27

File changed.

Contains only whitespace changes.

+23 −23

File changed.

Contains only whitespace changes.