Commit 4b868c56 authored by David M. Rogers's avatar David M. Rogers
Browse files

Fixed potential None return.

parent baa4ec1c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -115,4 +115,5 @@ def sequence_rules(rules : dict[str, Action], *steps : str) -> Container:
            assert C is not None, f"Starting file '{result}' not present."
            C = C.run( rules[s], name = s )
            C.store(result)
    assert C is not None, "Empty rule set."
    return C