Facepalm: remove now unused `CostModel` idea..

account_tests
Tyler Goodlet 2023-08-11 13:34:23 -04:00
parent 077d9bf1d2
commit c5ed6e6ac4
2 changed files with 0 additions and 4 deletions

View File

@ -50,7 +50,6 @@ from ._allocate import (
mk_allocator,
Allocator,
)
from .models import CostModel
log = get_logger(__name__)
@ -59,7 +58,6 @@ __all__ = [
'Account',
'Allocator',
'Asset',
'CostModel',
'MktPair',
'Position',
'Symbol',

View File

@ -41,7 +41,6 @@ import tractor
from piker.brokers import get_brokermod
from piker.accounting import (
Account,
# CostModel,
MktPair,
Position,
Transaction,
@ -790,7 +789,6 @@ def norm_trade(
pairs: dict[str, Struct],
symcache: SymbologyCache | None = None,
# fees: CostModel | None = None,
brokermod: ModuleType | None = None,
) -> Transaction: