修改: AttributeError: 'Bot' object has no attribute 'config'
尽管一直在寻找解决方案,我仍然无法找到解决这个可能是平庸的错误的方法。
错误:AttributeError: 'Bot' object has no attribute 'config'
application.py:
yaml = yaml.load(open("config.yml").read())
config = january.Config.from_yaml(yaml)
client = january.Bot(config)
[...]
january.py(错误所在的代码片段):
[...]
class Bot(Client):
def __init__(self, config: Config):
super().__init__(config.email, config.password)
self.config = config
def onLoggingIn(self, email=None):
print(self.config.get_message("logging-in").format_value(email))
在测试期间尝试从application.py
执行相同的操作一切正常。问题仅出在Bot
类。
Client
类可用here。
有什么想法吗? d: