Verified Commit 6ddaae5d authored by Jakob Moser's avatar Jakob Moser
Browse files

Raise an error instead of just passing

parent 85679b73
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ class PaymentOrderCollection(Iterable[PaymentOrder]):

    @classmethod
    def get(cls, studienfachschaft: Studienfachschaft, year: int) -> Self:
        pass  # TODO
        raise NotImplementedError()  # TODO

    @classmethod
    def from_dir(cls, path_or_str: Path | str) -> Self: