Implement a migration to new braces syntax and add migrate tests

This commit is contained in:
Joshua Warner 2025-02-16 09:34:10 -08:00
parent 017fd006c6
commit 109cb93b20
No known key found for this signature in database
GPG key ID: 89AD497003F93FDD
540 changed files with 3425 additions and 2 deletions

View file

@ -0,0 +1,12 @@
a = "Hello,\n\nWorld!"
b =
"""
Hello,\n\nWorld!
"""
c =
"""
Hello,
World!
"""
42