Skip to content

Commit b51ce89

Browse files
authored
Fix indentation
1 parent e8fc2fe commit b51ce89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/typing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,9 +443,9 @@ For example::
443443
new_non_team_user(HeroUser) # OK
444444

445445
new_non_team_user(ManagerUser) # Error: ``type[ManagerUser]`` is not a subtype
446-
# of ``type[BasicUser | ProUser]``
446+
# of ``type[BasicUser | ProUser]``
447447
new_non_team_user(TeamUser) # Error: ``type[TeamUser]`` is not a subtype
448-
# of ``type[BasicUser | ProUser]``
448+
# of ``type[BasicUser | ProUser]``
449449
new_non_team_user(User) # Also an error
450450

451451
``type[Any]`` is equivalent to :class:`type`, which is the root of Python's

0 commit comments

Comments
 (0)