我正在尝试制作我的第一个不和谐机器人。我收到此错误:NameError: name 'exceptions' is not defined
。它在__init__
中。我想名字有问题。
这是我的__init__
的样子:
from .client import *
from .exceptions import *
from .protocol import *
from .server import *
from .uri import *
from .version import version as __version__ # noqa
__all__ = (
client.__all__ +
exceptions.__all__ +
protocol.__all__ +
server.__all__ +
uri.__all__
)
如果我需要添加其他内容,请在评论中告诉我。