如何在__init__中修复NameError?

时间:2019-05-09 23:55:30

标签: python

我正在尝试制作我的第一个不和谐机器人。我收到此错误: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__
)

如果我需要添加其他内容,请在评论中告诉我。

0 个答案:

没有答案