-
Notifications
You must be signed in to change notification settings - Fork 396
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
fix: semicolon supression #3830
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
for more information, see https://pre-commit.ci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice, so much simpler
Oh wait, I think tests will fail, the asserts are wrong |
@dmadisetti, tests are in bad shape. if you see your test pass, feel free to merge |
@mscolnick my tests pass, but lacking permissions to force (which is fine, just a heads up) tests/_ast/test_compiler.py::TestSemicolon::test_return PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_suppressed PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_last PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_last_suppressed PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_comment PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_comment_suppressed PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_string_semicolon PASSED [ 6%]
tests/_ast/test_compiler.py::TestSemicolon::test_return_string_semicolon_suppressed PASSED [ 6%] |
🚀 Development release published. You may be able to view the changes at https://marimo.app?v=0.11.7-dev7 |
📝 Summary
Replaces #3806
🔍 Description of Changes
Resolves #3726
@mscolnick