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
None of these are handled well (it assumes all branches are followed, and you'd need to --allow-names both or only test on one and --allow-names the other.
try:
import x
except ImportError:
import y
if sys.version_info < (3, 8):
import x
else:
import y
try:
import x
except ImportError:
x = None
The text was updated successfully, but these errors were encountered:
None of these are handled well (it assumes all branches are followed, and you'd need to
--allow-names
both or only test on one and--allow-names
the other.The text was updated successfully, but these errors were encountered: