[Blocking CI] Fix pep8 error about unused imports (#9090)

This commit is contained in:
Kaushik B 2021-08-24 21:26:32 +05:30 committed by GitHub
parent 81145ca990
commit 1a2468f530
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import Any, Iterator, List, Optional, Sequence, Union
from typing import Any, List, Optional, Sequence, Union
from deprecate.utils import void
from torch.utils.data.dataloader import DataLoader

View File

@ -14,7 +14,7 @@
import logging
from contextlib import suppress
from typing import Iterator, Optional
from typing import Optional
from pytorch_lightning.loops import Loop
from pytorch_lightning.loops.epoch import TrainingEpochLoop