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
{{ message }}
This repository was archived by the owner on Jun 16, 2021. It is now read-only.
policy.py第110行:
for name, thing in locals().items():
应该改为:
for name, thing in list(locals().items()):
否则会出现异常RuntimeError: dictionary changed size during iteration