Commit faafb6cd authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

Merge branch 'python_cleanup' into 'main'

Python cleanup

See merge request !1455
parents 61a780ec c3ca700b
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@
# 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 csv
import re
import sys

newsletterFilename = ""
+0 −1
Original line number Diff line number Diff line
@@ -29,7 +29,6 @@
# 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 csv
import re
import sys

newsletterFilename = ""
+1 −2
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@
import argparse
import concurrent.futures
import os
import pathlib
import re
import shutil
import subprocess
@@ -132,7 +131,7 @@ def main(args):
        if num_files_diff > 0:
            print(f"{num_files_diff} files differ/don't exist")
        else:
            print(f"All files are bitexact")
            print("All files are bitexact")


def compare_files(f, fol1, fol2, outputs_dict, tool):
+0 −3
Original line number Diff line number Diff line
#!/usr/bin/env python3

import argparse
import csv
import os
import struct
import sys

import matplotlib.pyplot as plt
import numpy as np
+1 −2
Original line number Diff line number Diff line
@@ -33,8 +33,7 @@ __license__ = """
import os
import shutil

import numpy as np
from pyaudio3dtools import audioarray, audiofile
from pyaudio3dtools import audiofile


def main():
Loading