Commit 47704fbe authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[fix] check for MLD binary is redundant, remove it

parent aeaa35fb
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -56,7 +56,8 @@ DIFF_STR = {

def main(args):
    tool = args.tool
    if tool != "pyaudio3dtools" and shutil.which(tool) is None:
    # check for MLD will be done by the compare() function
    if tool == "CompAudio" and shutil.which(tool) is None:
        print(f"{tool} not in PATH - abort.")
        sys.exit(-1)