Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen L. <lrq3000@gmail.com>
  • Loading branch information
lrq3000 committed Sep 5, 2016
1 parent 6772218 commit a77527b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tqdm/__init__.py
Expand Up @@ -2,12 +2,16 @@
from ._tqdm import trange
from ._tqdm_gui import tqdm_gui
from ._tqdm_gui import tgrange
from ._tqdm_bare import tqdm_bare
from ._tqdm_bare import tbrange
from ._tqdm_pandas import tqdm_pandas
from ._main import main
from ._version import __version__ # NOQA
from ._tqdm import TqdmTypeError, TqdmKeyError, TqdmDeprecationWarning

__all__ = ['tqdm', 'tqdm_gui', 'trange', 'tgrange', 'tqdm_pandas',
__all__ = ['tqdm', 'tqdm_gui', 'trange', 'tgrange',
'tqdm_bare', 'tqdm_brange',
'tqdm_pandas',
'tqdm_notebook', 'tnrange', 'main',
'TqdmTypeError', 'TqdmKeyError', 'TqdmDeprecationWarning',
'__version__']
Expand Down

0 comments on commit a77527b

Please sign in to comment.