dev@locazia: fix misprint

This commit is contained in:
user 2024-02-28 23:47:09 +03:00
parent 04c3441b42
commit 35e58d3360
1 changed files with 3 additions and 3 deletions

View File

@ -35,15 +35,15 @@ async def t_home_menu(__msg, **extra):
[ [
{ {
'text': f"{wallets[i]['name']}", 'text': f"{wallets[i]['name']}",
'url': f"initTonconnect_{wallets[i]['app_name']}" 'callback_data': f"initTonconnect_{wallets[i]['app_name']}"
} if i < len(wallets) else None, } if i < len(wallets) else None,
{ {
'text': f"{wallets[i + 1]['name']}", 'text': f"{wallets[i + 1]['name']}",
'url': f"initTonconnect_{wallets[i + 1]['app_name']}" 'callback_data': f"initTonconnect_{wallets[i + 1]['app_name']}"
} if i + 1 < len(wallets) else None, } if i + 1 < len(wallets) else None,
{ {
'text': f"{wallets[i + 2]['name']}", 'text': f"{wallets[i + 2]['name']}",
'url': f"initTonconnect_{wallets[i + 2]['app_name']}" 'callback_data': f"initTonconnect_{wallets[i + 2]['app_name']}"
} if i + 2 < len(wallets) else None, } if i + 2 < len(wallets) else None,
] ]
for i in range(0, len(wallets), 3) for i in range(0, len(wallets), 3)