Skip to content

Commit 4a38543

Browse files
authored
Adding syntax errors for flake8 and isort
1 parent f053e11 commit 4a38543

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/common.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import gzip
77
from io import BufferedIOBase, BytesIO
88
import mmap
9-
import os
109
import pathlib
10+
import os
1111
from typing import (
1212
IO,
1313
Any,
@@ -81,7 +81,7 @@ class BaseIterator:
8181
parser, not for an in-memory table, yes for its iterator)."""
8282

8383
def __iter__(self) -> "BaseIterator":
84-
return self
84+
return self
8585

8686
def __next__(self):
8787
raise AbstractMethodError(self)

0 commit comments

Comments
 (0)