remove uneeded if

This commit is contained in:
dni ⚡ 2022-12-20 13:17:07 +01:00
parent c90f7878d7
commit 22cafe9ed0

View File

@ -47,10 +47,8 @@ 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
wallet.dict() for wallet in await get_usermanager_users_wallets(user.id)
]
return full