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 99f3eae commit 1a9f9da
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ Accounting method plugins are discovered by RP2 at runtime and they must adhere
* For chronological accounting methods:
* import the following (plus any other RP2 or Python package you might need):
```
from rp2.abstract_accounting_method import (
AbstractChronologicalAccountingMethod,
AcquiredLotCandidatesOrder,
)
from rp2.abstract_accounting_method import (
AbstractChronologicalAccountingMethod,
AcquiredLotCandidatesOrder,
)
```
* Add a class named `AccountingMethod`, deriving from `AbstractChronologicalAccountingMethod`:
```
Expand All @@ -300,10 +300,10 @@ from rp2.abstract_accounting_method import (
* For feature-based accounting methods:
* import the following (plus any other RP2 or Python package you might need):
```
from rp2.abstract_accounting_method import (
AbstractFeatureBasedAccountingMethod,
AcquiredLotSortKey,
)
from rp2.abstract_accounting_method import (
AbstractFeatureBasedAccountingMethod,
AcquiredLotSortKey,
)
from rp2.in_transaction import InTransaction
```
* Add a class named `AccountingMethod`, deriving from `AbstractFeatureBasedAccountingMethod`:
Expand Down

0 comments on commit 1a9f9da

Please sign in to comment.