mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 22:47:05 +01:00
remove uneeded if
This commit is contained in:
parent
c90f7878d7
commit
22cafe9ed0
1 changed files with 3 additions and 5 deletions
|
@ -47,11 +47,9 @@ async def api_usermanager_user(
|
|||
async def api_usermanager_users_create(data: CreateUserData):
|
||||
user = await create_usermanager_user(data)
|
||||
full = user.dict()
|
||||
wallets: list[Wallet] = await get_usermanager_users_wallets(user.id)
|
||||
if wallets:
|
||||
full["wallets"] = [
|
||||
wallet.dict() for wallet in wallets
|
||||
]
|
||||
full["wallets"] = [
|
||||
wallet.dict() for wallet in await get_usermanager_users_wallets(user.id)
|
||||
]
|
||||
return full
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue