Skip to content

Commit

Permalink
Disable panic button until PR #74
Browse files Browse the repository at this point in the history
  • Loading branch information
lorcalhost committed May 5, 2021
1 parent 0c9e263 commit ba9ea3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[flake8]
ignore = E501, W605, B902, N999, W503, SIM102
ignore = E501, W605, B902, N999, W503, SIM102, E800
inline-quotes = "
14 changes: 11 additions & 3 deletions btb_manager_telegram/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,18 @@
def menu(update: Update, _: CallbackContext) -> int:
logger.info(f"Menu selector. ({update.message.text})")

# Panic button disabled until PR #74 is complete
# keyboard = [
# ["💵 Current value", "➗ Current ratios"],
# ["📈 Progress", "⌛ Trade History"],
# ["🔍 Check bot status", "🚨 Panic button"],
# ["🛠 Maintenance", "⚙️ Configurations"],
# ]

keyboard = [
["💵 Current value", "➗ Current ratios"],
["📈 Progress", "⌛ Trade History"],
["🔍 Check bot status", "🚨 Panic button"],
["💵 Current value"],
["📈 Progress", "➗ Current ratios"],
["🔍 Check bot status", "⌛ Trade History"],
["🛠 Maintenance", "⚙️ Configurations"],
]

Expand Down

0 comments on commit ba9ea3d

Please sign in to comment.