Skip to content

Commit a5c467c

Browse files
authored
docs(v3): fix build error (#4065)
1 parent 650bfd9 commit a5c467c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

litestar/openapi/spec/security_requirement.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from __future__ import annotations
1+
from typing_extensions import TypeAlias
22

3-
SecurityRequirement = dict[str, list[str]]
3+
SecurityRequirement: TypeAlias = "dict[str, list[str]]"
44
"""Lists the required security schemes to execute this operation. The name used for each property MUST correspond to a
55
security scheme declared in the.
66

0 commit comments

Comments
 (0)