We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba751b commit d5d0cc4Copy full SHA for d5d0cc4
services/web/server/src/simcore_service_webserver/users/_users_service.py
@@ -206,12 +206,13 @@ async def get_user_invoice_address(
206
user_billing_details = await get_user_billing_details(
207
app, user_id=user_id, product_name=product_name
208
)
209
+
210
return UserInvoiceAddress(
211
line1=user_billing_details.address,
212
state=user_billing_details.state,
213
postal_code=user_billing_details.postal_code,
214
city=user_billing_details.city,
- country=pycountry.countries.lookup(user_billing_details.country).apha_2,
215
+ country=pycountry.countries.lookup(user_billing_details.country).alpha_2,
216
217
218
0 commit comments