Fixed missing ")" (#489)

This commit is contained in:
Richard Eames 2017-12-04 14:49:39 -07:00 committed by Brett Cannon
parent 0f007b78a8
commit f1252a2f4e
1 changed files with 1 additions and 1 deletions

View File

@ -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::