Add missing type hint in monarch_money (#126019)

pull/125322/head
epenet 2024-09-16 10:20:08 +02:00 committed by GitHub
parent 56d00fd0c8
commit e0d18c621b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class MonarchMoneyConfigFlow(ConfigFlow, domain=DOMAIN):
VERSION = 1 VERSION = 1
def __init__(self): def __init__(self) -> None:
"""Initialize config flow.""" """Initialize config flow."""
self.email: str | None = None self.email: str | None = None
self.password: str | None = None self.password: str | None = None