Commit 998d8bc4 authored by norvell's avatar norvell Committed by emerit
Browse files

Allow ref not to exist for peaq_binaural, since comparing to input

parent 93473bb7
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1006,10 +1006,7 @@ def reference_path(request) -> str:

    path = str(path.resolve())

    if (
        request.config.option.update_ref == "0"
        and not request.config.option.compare_to_input
    ):
    if request.config.option.update_ref == "0" and not request.config.option.compare_to_input and not request.config.option.peaq_binaural:
        if not os.path.isdir(path):
            raise FileNotFoundError(
                f"REF path {path} not found!\nPlease generate the references, first!\n!"