Remove pytype workaround in os/__init__.pyi. (#2797)

Pytype release 2019.02.13 fixed the bug that
necessitated this workaround.
This commit is contained in:
Rebecca Chen
2019-02-14 12:29:19 -08:00
committed by Jelle Zijlstra
parent 0989d9507e
commit d275e73e1f
3 changed files with 1 additions and 7 deletions

View File

@@ -11,9 +11,6 @@ from typing import (
)
from . import path as path
# Workaround a pytype crash (see #2683)
from builtins import bytes
_T = TypeVar('_T')
# ----- os variables -----