Skip to content

Commit

Permalink
Added missing abc.abstractmethod decorator.
Browse files Browse the repository at this point in the history
  • Loading branch information
gbeced committed Dec 13, 2023
1 parent 193fd74 commit 811904c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions basana/backtesting/fees.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class FeeStrategy(metaclass=abc.ABCMeta):
* This is a base class and should not be used directly.
"""

@abc.abstractmethod
def calculate_fees(
self, order: orders.Order, balance_updates: Dict[str, Decimal]
) -> Dict[str, Decimal]:
Expand Down

0 comments on commit 811904c

Please # to comment.