Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
feat: improve invalid format help text
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-napoleone committed Jul 20, 2021
1 parent e09bf03 commit dddf6a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terra_ltv_bot/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def subscribe(self, message: types.Message) -> None:
else:
await message.reply("invalid account address")
else:
await message.reply("invalid format")
await message.reply("invalid format, missing account address")

async def list_(self, message: types.Message) -> None:
try:
Expand Down Expand Up @@ -155,7 +155,7 @@ async def unsubscribe(self, message: types.Message) -> None:
else:
await message.reply("invalid account address")
else:
await message.reply("invalid format")
await message.reply("invalid format, missing account address")

async def ltv(self, message: types.Message) -> None:
try:
Expand All @@ -172,4 +172,4 @@ async def ltv(self, message: types.Message) -> None:
else:
await message.reply("invalid account address")
else:
await message.reply("invalid format")
await message.reply("invalid format, missing account address")

0 comments on commit dddf6a6

Please sign in to comment.