mirror of
https://github.com/uhIgnacio/EmoteManager.git
synced 2024-08-15 02:23:13 +00:00
14 lines
576 B
Python
14 lines
576 B
Python
# © lambda#0987 <lambda@lambda.dance>
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
from .misc import *
|
|
from . import archive
|
|
from . import emote
|
|
from . import errors
|
|
from . import paginator
|
|
from . import compat
|
|
# 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.
|