You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
异常:RuntimeError: Set changed size during iteration
问题位置:MHY-store/.venv/lib/python3.12/site-packages/nonebot_plugin_mystool/command/exchange.py文件的第476行
原因:机器人初始化兑换任务时在循环过程中修改了集合导致报错
解决:”for plan in plans:”改为“for plan in plans.copy():”