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
[IMP] prevent import error diagnostic in ImportError catch clause of try..catch
If a missing impotr is in a catch clause like
```python
try:
pass
catch ImportError:
import something_wrong
```
we should not raise a diagnostic as the content of the try will probably contain the right import
0 commit comments