Remove unused import statements using Pycln. (#2021)

* remove unused imports using Pycln.

* reverse comma style.
This commit is contained in:
Hadi Alqattan 2021-03-05 22:58:00 +03:00 committed by GitHub
parent 12f98219bc
commit b3ceb293d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 7 deletions

View File

@ -16,7 +16,6 @@
__all__ = ["Driver", "load_grammar"]
# Python imports
import codecs
import io
import os
import logging
@ -24,7 +23,6 @@
import sys
from typing import (
Any,
Callable,
IO,
Iterable,
List,
@ -32,7 +30,6 @@
Text,
Tuple,
Union,
Sequence,
)
# Pgen imports

View File

@ -15,8 +15,6 @@
from typing import (
Optional,
Text,
Sequence,
Any,
Union,
Tuple,
Dict,

View File

@ -8,7 +8,6 @@
Any,
Dict,
IO,
Iterable,
Iterator,
List,
Optional,

View File

@ -25,7 +25,6 @@
Union,
Set,
Iterable,
Sequence,
)
from blib2to3.pgen2.grammar import Grammar