Skip to content

Commit

Permalink
Add FileSender to top level
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jul 12, 2016
1 parent 28bae40 commit b990ce6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aiohttp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from .streams import * # noqa
from .multipart import * # noqa
from .websocket_client import * # noqa
from .file_sender import FileSender # noqa


__all__ = (client.__all__ + # noqa
Expand All @@ -29,4 +30,4 @@
multidict.__all__ + # noqa
multipart.__all__ + # noqa
websocket_client.__all__ + # noqa
('hdrs', '__version__'))
('hdrs', '__version__', 'FileSender'))

0 comments on commit b990ce6

Please sign in to comment.