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 Oct 23, 2023. It is now read-only.
Bare except: is evil, please catch a specific exception, ImportError in this case.
I am trying to get rid of eventlet in my code base, and so I have an assertion in my code: assert 'eventlet' not in sys.modules. Unconditionally importing eventlet makes it fail that assertion. Instead, could you please get the module only if it's already imported? if 'eventlet' in sys.modules: stuff.