Fixed missing ")" (#489)
This commit is contained in:
parent
0f007b78a8
commit
f1252a2f4e
|
@ -308,7 +308,7 @@ forward references with string literals. The list includes:
|
|||
|
||||
T = TypeVar('T', bound='<type>')
|
||||
UserId = NewType('UserId', '<type>')
|
||||
Employee = NamedTuple('Employee', [('name', '<type>', ('id', '<type>')])
|
||||
Employee = NamedTuple('Employee', [('name', '<type>'), ('id', '<type>')])
|
||||
|
||||
* aliases::
|
||||
|
||||
|
|
Loading…
Reference in New Issue