Commit f7cdbb3c authored by Dominik Weckbecker's avatar Dominik Weckbecker 💬
Browse files

fix formatting

parent 1f2f0c86
Loading
Loading
Loading
Loading
Loading
+27 −7
Original line number Diff line number Diff line
@@ -575,12 +575,32 @@ def validate_input_files(cfg: TestConfig):
    # always throw an error for ISM (and MASA) input
    if input_format.startswith("ISM") or input_format.startswith("MASA"):
        isosb = False
        isosba = (input_format in ['ISM1SBA1', 'ISM1SBA2', 'ISM1SBA3', 'ISM2SBA1', 'ISM2SBA2', 'ISM2SBA3', 
                                   'ISM3SBA1', 'ISM3SBA2', 'ISM3SBA3', 'ISM4SBA1', 'ISM4SBA2', 'ISM4SBA3', 
                                   'ISM1PLANARSBA1', 'ISM1PLANARSBA2', 'ISM1PLANARSBA3', 'ISM2PLANARSBA1', 
                                   'ISM2PLANARSBA2', 'ISM2PLANARSBA3', 'ISM3PLANARSBA1', 'ISM3PLANARSBA2',
                                   'ISM3PLANARSBA3', 'ISM4PLANARSBA1', 'ISM4PLANARSBA2', 'ISM4PLANARSBA3' ]
                  )
        isosba = input_format in [
            "ISM1SBA1",
            "ISM1SBA2",
            "ISM1SBA3",
            "ISM2SBA1",
            "ISM2SBA2",
            "ISM2SBA3",
            "ISM3SBA1",
            "ISM3SBA2",
            "ISM3SBA3",
            "ISM4SBA1",
            "ISM4SBA2",
            "ISM4SBA3",
            "ISM1PLANARSBA1",
            "ISM1PLANARSBA2",
            "ISM1PLANARSBA3",
            "ISM2PLANARSBA1",
            "ISM2PLANARSBA2",
            "ISM2PLANARSBA3",
            "ISM3PLANARSBA1",
            "ISM3PLANARSBA2",
            "ISM3PLANARSBA3",
            "ISM4PLANARSBA1",
            "ISM4PLANARSBA2",
            "ISM4PLANARSBA3",
        ]
        if not isosba:
            frame_alignment = "error"