Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenkov committed Apr 16, 2020
1 parent d9ce6cc commit fcecb9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smart_open/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
if len(logger.handlers) == 0:
logger.addHandler(logging.NullHandler())

from .smart_open_lib import open, parse_uri, smart_open, register_compressor
from .s3 import iter_bucket as s3_iter_bucket
from .smart_open_lib import open, parse_uri, smart_open, register_compressor # noqa: E402
from .s3 import iter_bucket as s3_iter_bucket # noqa: E402

__all__ = [
'open',
Expand Down

0 comments on commit fcecb9c

Please sign in to comment.