Skip to content

Commit e2588ad

Browse files
johnslavikpawamoy
authored andcommitted
fix: correct YORE annotation for t-string quote tests
The block of t-string quote-delimiter test cases should not be removed when Python 3.13 reaches EOL — t-strings become universally available then and the version guard can simply be dropped. Replace "Remove block" with "Replace block with lines 3-5" so YORE strips the `sys.version_info >= (3, 14)` wrapper and keeps the three test strings. 💞 Generated with the [darling work system](https://github.com/johnslavik/darling)
1 parent ccc19b8 commit e2588ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/griffelib/tests/test_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"f'\"quoted\" and \"re-quoted\" {x}'", # multiple " → ' delimiter
6262
"f'''it's \"complicated\" {x}'''", # both → triple-' delimiter
6363
"f'''she said \"it's fine\" to {x}'''", # both, different parts → triple-'
64-
# YORE: EOL 3.13: Remove block.
64+
# YORE: EOL 3.13: Replace block with lines 2-4.
6565
*(
6666
[
6767
't"it\'s {x}"',

0 commit comments

Comments
 (0)