Skip to content

Commit

Permalink
Fixed typo, curly close bracket instead of normal
Browse files Browse the repository at this point in the history
  • Loading branch information
nanonano committed Feb 12, 2021
1 parent 5852025 commit 4ca92ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bittytax/holdings.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def add_tokens(self, quantity, cost, fees, is_deposit):
self.deposits += 1

if config.args.debug:
print("%ssection104: %s=%s (+%s) cost=%s %s (+%s %s) fees=%s %s (+%s %s}" % (
print("%ssection104: %s=%s (+%s) cost=%s %s (+%s %s) fees=%s %s (+%s %s)" % (
Fore.YELLOW,
self.asset,
'{:0,f}'.format(self.quantity.normalize()),
Expand All @@ -50,7 +50,7 @@ def subtract_tokens(self, quantity, cost, fees, is_withdrawal):
self.withdrawals += 1

if config.args.debug:
print("%ssection104: %s=%s (-%s) cost=%s %s (-%s %s) fees=%s %s (-%s %s}" % (
print("%ssection104: %s=%s (-%s) cost=%s %s (-%s %s) fees=%s %s (-%s %s)" % (
Fore.YELLOW,
self.asset,
'{:0,f}'.format(self.quantity.normalize()),
Expand Down

0 comments on commit 4ca92ed

Please sign in to comment.