Update typing (1) (#63922)
This commit is contained in:
parent
4e2cd1bec0
commit
d3b7bd25ef
11 changed files with 30 additions and 30 deletions
|
@ -7,7 +7,7 @@ from __future__ import annotations
|
|||
import asyncio
|
||||
from collections import OrderedDict
|
||||
import logging
|
||||
from typing import Any, Dict
|
||||
from typing import Any
|
||||
|
||||
import attr
|
||||
import voluptuous as vol
|
||||
|
@ -86,7 +86,7 @@ class NotifySetting:
|
|||
target: str | None = attr.ib(default=None)
|
||||
|
||||
|
||||
_UsersDict = Dict[str, NotifySetting]
|
||||
_UsersDict = dict[str, NotifySetting]
|
||||
|
||||
|
||||
@MULTI_FACTOR_AUTH_MODULES.register("notify")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue