Fix typo in api.py (#55)

passeword -> password
This commit is contained in:
Ronnie 2021-04-11 18:00:37 -07:00 committed by GitHub
parent 20575023cc
commit 52057dff79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ class IntegrationBlueprintApiClient:
) -> None:
"""Sample API Client."""
self._username = username
self._passeword = password
self._password = password
self._session = session
async def async_get_data(self) -> dict: