From e01a8f63f68236cb56c34ba48ce18e2b477801a7 Mon Sep 17 00:00:00 2001 From: eprbell <77937475+eprbell@users.noreply.github.com> Date: Wed, 17 Jul 2024 19:11:41 -0700 Subject: [PATCH] Minor fixes --- src/rp2/abstract_accounting_method.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rp2/abstract_accounting_method.py b/src/rp2/abstract_accounting_method.py index 6374518..6d8130f 100644 --- a/src/rp2/abstract_accounting_method.py +++ b/src/rp2/abstract_accounting_method.py @@ -41,7 +41,7 @@ class AcquiredLotSortKey(NamedTuple): class AbstractAccountingMethodIterator: def __next__(self) -> InTransaction: - raise NotImplementedError("abstract function") + raise NotImplementedError("Abstract function") class ChronologicalAccountingMethodIterator(AbstractAccountingMethodIterator): @@ -159,7 +159,7 @@ class AbstractAccountingMethod: def create_lot_candidates( self, acquired_lot_list: List[InTransaction], acquired_lot_2_partial_amount: Dict[InTransaction, RP2Decimal] ) -> AbstractAcquiredLotCandidates: - raise NotImplementedError("abstract") + raise NotImplementedError("Abstract function") def seek_non_exhausted_acquired_lot( self,