Skip to content

Commit

Permalink
update a sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
gschurck committed Feb 17, 2021
1 parent e199cd0 commit 0c343e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tradoge.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def setup(config_obj, client):
'name': 'buying_mode',
'message': 'How do you want to buy ?',
'choices': [
'Buy DOGE with a capped dollar amount',
'Buy DOGE with a fixed dollar amount',
'Buy a fixed DOGE amount',
]
}
Expand Down Expand Up @@ -137,7 +137,7 @@ def setup(config_obj, client):
answers = prompt(setup_questions)
if answers['trading_pair'] == 'USDT' or answers['trading_pair'] == 'BUSD':
answers_mode=prompt(setup_questions_buying_mode)
if answers_mode['buying_mode'] == 'Buy DOGE with a capped dollar amount':
if answers_mode['buying_mode'] == 'Buy DOGE with a fixed dollar amount':
answers['buying_mode'] = 'USD'
answers2 = prompt(setup_questions_USD)
elif answers_mode['buying_mode'] == 'Buy a fixed DOGE amount':
Expand Down

0 comments on commit 0c343e6

Please sign in to comment.