-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python Format Strings are not executed #1901
Comments
The error message is:
|
It might be worth considering switching skulpt out for a custom router providing the analysis for us as this would ensure we are using the correct python version (and wouldn't need to worry about discrepancies btwn skulpt and the python version used)... |
After #1908 a router might not be necessary, as a language server is capable of pointing out errors in code in the text editor iteself. This can get rid of skulpt. |
Unfortunately, skulpt is not actually being used in the error here to provide LSP-like feedback to the editor. It is being used to determine the operation interface so it can keep the implementation and the interface editor in sync. Since it is a pretty specific task, it's not able to be replaced by a language server :/ Examples of it can be found in the tests here. |
The following operation
Executes successfully. However the following fails
I suspect this is due to
skulpt
not recognizing format strings.The text was updated successfully, but these errors were encountered: