X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5fb5cc8c2bd5a0bb1359fb69cdb705b55afade52..6dbb657681b82268f66bd788991a4daa737577dc:/tests/fstring.py diff --git a/tests/fstring.py b/tests/fstring.py index 6b821be..b288cbc 100644 --- a/tests/fstring.py +++ b/tests/fstring.py @@ -1,5 +1,5 @@ -f'f-string without formatted values is just a string' -f'{{NOT a formatted value}}' -f'some f-string with {a} {few():.2f} {formatted.values!r}' +f"f-string without formatted values is just a string" +f"{{NOT a formatted value}}" +f"some f-string with {a} {few():.2f} {formatted.values!r}" f"{f'{nested} inner'} outer" -f'space between opening braces: { {a for a in (1, 2, 3)}}' +f"space between opening braces: { {a for a in (1, 2, 3)}}"