Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eprbell committed Jul 18, 2024
1 parent 8c42357 commit e01a8f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rp2/abstract_accounting_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AcquiredLotSortKey(NamedTuple):

class AbstractAccountingMethodIterator:
def __next__(self) -> InTransaction:
raise NotImplementedError("abstract function")
raise NotImplementedError("Abstract function")


class ChronologicalAccountingMethodIterator(AbstractAccountingMethodIterator):
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit e01a8f6

Please sign in to comment.