Skip to content

Commit

Permalink
✨ feature: adding action_identifier for each client in get_info
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 8, 2024
1 parent a6f37d7 commit 29a5f1b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ async def get_info(self):
"""
version_info = f"ℹ️ {type(self).__name__} {__version__}\n"
client_info = "".join(f"🔎 {client.name}\n" for client in self.clients)
client_info = "".join(
f"🔎 {client.name}\n🔠 {client.action_identifier}"
for client in self.clients
)
return version_info + client_info.strip()

async def search(self, message: str) -> bool:
Expand Down

0 comments on commit 29a5f1b

Please sign in to comment.