EmoteManager/utils/__init__.py

13 lines
494 B
Python
Raw Normal View History

#!/usr/bin/env python3
from .misc import *
2019-08-04 10:15:15 +00:00
from . import archive
from . import emote
from . import errors
2018-07-30 05:43:30 +00:00
from . import paginator
# note: do not import .image in case the user doesn't want it
# since importing image can take a long time.
# Do not import .emote_client, either, because otherwise running python -m utils.image
# will cause utils.image to appear in sys.modules after import of package 'utils' but
# prior to execution of 'utils.image' which may result in unpredictable behavior.