Skip to content

Commit

Permalink
Fix sell price question type
Browse files Browse the repository at this point in the history
Signed-off-by: alfred richardsn <rchrdsn@protonmail.ch>
  • Loading branch information
r4rdsn committed May 29, 2020
1 parent bb4694d commit ce1f2c4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/handlers/creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,8 @@ async def price_ask(
)
callback_command = "buy"
else:
answer = (
i18n("ask_sell_price {of_currency} {per_currency}").format(
of_currency=order["buy"], per_currency=order["sell"]
),
answer = i18n("ask_sell_price {of_currency} {per_currency}").format(
of_currency=order["buy"], per_currency=order["sell"]
)
callback_command = "sell"

Expand Down

0 comments on commit ce1f2c4

Please sign in to comment.