Commit 47c3b333 authored by David Hendriks's avatar David Hendriks
Browse files

made empty return if there is no output

parent 8d4a9d10
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -460,8 +460,10 @@ def output_lines(output: str) -> list:
        Iterator over the lines of the binary_c output
    """

    if output:
        return output.splitlines()

    else:
        return []

def example_parse_output(output: str, selected_header: str) -> dict:
    """