From 52057dff79404eb72fd7ba356252ba3714bde53a Mon Sep 17 00:00:00 2001 From: Ronnie Date: Sun, 11 Apr 2021 18:00:37 -0700 Subject: [PATCH] Fix typo in api.py (#55) passeword -> password --- custom_components/integration_blueprint/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/integration_blueprint/api.py b/custom_components/integration_blueprint/api.py index fa9d7c9..4001998 100644 --- a/custom_components/integration_blueprint/api.py +++ b/custom_components/integration_blueprint/api.py @@ -20,7 +20,7 @@ def __init__( ) -> None: """Sample API Client.""" self._username = username - self._passeword = password + self._password = password self._session = session async def async_get_data(self) -> dict: