🩹 道具调用修复

This commit is contained in:
HibiKier 2025-02-15 21:29:01 +08:00 committed by GitHub
parent 5cd164ba90
commit da271e9e4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -257,9 +257,9 @@ class ShopManage:
else:
func(*cls.__parse_args(args, param, **kwargs))
elif asyncio.iscoroutinefunction(func):
await func(**kwargs)
await func()
else:
func(**kwargs)
func()
@classmethod
async def __run(