upgrade isort (#4576)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-09-25 13:57:15 -07:00
committed by GitHub
parent cb6549fa8f
commit 12e82874d2
2 changed files with 2 additions and 3 deletions

View File

@@ -4,5 +4,5 @@ black==20.8b1
flake8==3.8.3
flake8-bugbear==20.1.4
flake8-pyi==20.5.0
isort[pyproject]==5.1.1
isort[pyproject]==5.5.3
pytype>=2020.09.16

View File

@@ -8,9 +8,8 @@ from yaml.loader import * # noqa: F403
from yaml.nodes import * # noqa: F403
from yaml.tokens import * # noqa: F403
from .cyaml import *
from . import resolver as resolver # Help mypy a bit; this is implied by loader and dumper
from .cyaml import *
if sys.version_info < (3,):
_Str = Union[Text, str]