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
28 elif State == u"A": Value = u'8'
29 elif State == u"B": Value = u'9'
30
31 else<---- here
The token ELSE should be one of those: ASSERT, AT, ...
The combination of a single-line elif branch and the subsequent empty line causes the ParserError. Removal of the empty line or breaking the elif statement at ':' resolves the issue.
This has been tested against baron 0.6.6.
The text was updated successfully, but these errors were encountered:
From the error log:
The combination of a single-line elif branch and the subsequent empty line causes the ParserError. Removal of the empty line or breaking the elif statement at ':' resolves the issue.
This has been tested against baron 0.6.6.
The text was updated successfully, but these errors were encountered: