We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在 Plugin 生命周期 initialize 实现异步运行加快加载速度
PaiGram/core/plugin/_plugin.py
Line 198 in 208433d
async def initialize_task(self): try: await self.initialize() expect except Exception as e: # pylint: disable=W0703 logger.error('插件 "%s" initialize 过程失败', f"self.__name__", exc_info=e) async def install(self) -> None: # L198 await asyncio.creat_task(self.initialize_task)
The text was updated successfully, but these errors were encountered:
luoshuijs
Successfully merging a pull request may close this issue.
请确保您已阅读以上注意事项,并勾选下方的确认框。
需要添加的功能内容
在 Plugin 生命周期 initialize 实现异步运行加快加载速度
PaiGram/core/plugin/_plugin.py
Line 198 in 208433d
The text was updated successfully, but these errors were encountered: