Skip to content

Commit d5d0cc4

Browse files
committed
fixes typo
1 parent 8ba751b commit d5d0cc4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/web/server/src/simcore_service_webserver/users/_users_service.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,13 @@ async def get_user_invoice_address(
206206
user_billing_details = await get_user_billing_details(
207207
app, user_id=user_id, product_name=product_name
208208
)
209+
209210
return UserInvoiceAddress(
210211
line1=user_billing_details.address,
211212
state=user_billing_details.state,
212213
postal_code=user_billing_details.postal_code,
213214
city=user_billing_details.city,
214-
country=pycountry.countries.lookup(user_billing_details.country).apha_2,
215+
country=pycountry.countries.lookup(user_billing_details.country).alpha_2,
215216
)
216217

217218

0 commit comments

Comments
 (0)