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
Trying to run the linter on py<3.11 on code using except* crashes noisily with a SyntaxError. While fairly easy to figure out what went wrong we could wrap ast.parse in a try: except SyntaxError and print a somewhat more helpful message, and continue analyzing the other files.
And ofc if a file straight up has syntax errors.
The text was updated successfully, but these errors were encountered:
Trying to run the linter on py<3.11 on code using
except*
crashes noisily with aSyntaxError
. While fairly easy to figure out what went wrong we could wrapast.parse
in atry: except SyntaxError
and print a somewhat more helpful message, and continue analyzing the other files.And ofc if a file straight up has syntax errors.
The text was updated successfully, but these errors were encountered: