We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7298abe commit c7660b6Copy full SHA for c7660b6
tests/cpydiff/core_fstring_parser.py
@@ -5,5 +5,6 @@
5
workaround: Always use balanced braces and brackets in expressions inside f-strings
6
"""
7
8
-print(f'{"hello { world"}')
9
-print(f'{"hello ] world"}')
+# CIRCUITPY-CHANGE: add noqa so ruff won't complain about unmatched braces
+print(f"{'hello { world'}") # noqa
10
+print(f"{'hello ] world'}") # noqa
0 commit comments