Remove unnecessary quotes around forward references. (#3191)

This commit is contained in:
Rebecca Chen
2019-08-16 20:29:32 -07:00
committed by Jelle Zijlstra
parent b294782183
commit fab2ee0d7c
11 changed files with 12 additions and 12 deletions

View File

@@ -4,7 +4,7 @@ from typing import (
)
from types import TracebackType
_PT = TypeVar('_PT', bound='Pool')
_PT = TypeVar('_PT', bound=Pool)
_S = TypeVar('_S')
_T = TypeVar('_T')