[3.13] Typing docs: normalize some indents in code examples (GH-120912) (#120915)

Co-authored-by: Nyakku Shigure <sigure.qaq@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-06-23 18:31:40 +02:00 committed by GitHub
parent 99f18ea689
commit d6791cd933
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -98,7 +98,8 @@ Type aliases are useful for simplifying complex type signatures. For example::
# being exactly equivalent to this one.
def broadcast_message(
message: str,
servers: Sequence[tuple[tuple[str, int], dict[str, str]]]) -> None:
servers: Sequence[tuple[tuple[str, int], dict[str, str]]]
) -> None:
...
The :keyword:`type` statement is new in Python 3.12. For backwards