Loading muffin/payment_order/PaymentOrderCollection.py +1 −5 Original line number Diff line number Diff line Loading @@ -21,11 +21,7 @@ class PaymentOrderCollection(Iterable[PaymentOrder]): @classmethod def from_dir(cls, path_or_str: Path | str) -> Self: return cls( tuple( load_pdf(pdf) for pdf in Path(path_or_str).rglob("*.pdf") ) ) return cls(tuple(load_pdf(pdf) for pdf in Path(path_or_str).rglob("*.pdf"))) def __iter__(self) -> Iterator[PaymentOrder]: return iter(self.orders) Loading muffin/cash_flow/CashFlowDirection.py +1 −1 File changed.Contains only whitespace changes. Show changes Loading
muffin/payment_order/PaymentOrderCollection.py +1 −5 Original line number Diff line number Diff line Loading @@ -21,11 +21,7 @@ class PaymentOrderCollection(Iterable[PaymentOrder]): @classmethod def from_dir(cls, path_or_str: Path | str) -> Self: return cls( tuple( load_pdf(pdf) for pdf in Path(path_or_str).rglob("*.pdf") ) ) return cls(tuple(load_pdf(pdf) for pdf in Path(path_or_str).rglob("*.pdf"))) def __iter__(self) -> Iterator[PaymentOrder]: return iter(self.orders) Loading
muffin/cash_flow/CashFlowDirection.py +1 −1 File changed.Contains only whitespace changes. Show changes