diff --git a/homeassistant/components/auth/__init__.py b/homeassistant/components/auth/__init__.py index 19edfe5a618a42151a48b2ba04cb2562da849c06..d0157158aca6b20f48764480e5aec027d9f79df5 100644 --- a/homeassistant/components/auth/__init__.py +++ b/homeassistant/components/auth/__init__.py @@ -78,20 +78,16 @@ The result payload likes "result": { "id": "USER_ID", "name": "John Doe", - "is_owner': true, - "credentials": [ - { - "auth_provider_type": "homeassistant", - "auth_provider_id": null - } - ], - "mfa_modules": [ - { - "id": "totp", - "name": "TOTP", - "enabled": true, - } - ] + "is_owner": true, + "credentials": [{ + "auth_provider_type": "homeassistant", + "auth_provider_id": null + }], + "mfa_modules": [{ + "id": "totp", + "name": "TOTP", + "enabled": true + }] } }