Fix invalid printer IR error (#5422)

This commit is contained in:
Micha Reiser 2023-06-29 08:09:13 +02:00 committed by GitHub
parent ca5e10b5ea
commit 38189ed913
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 70 additions and 18 deletions

View file

@ -114,6 +114,16 @@ test_particular = [
'1.0000000000000000000000000000000000000000000010000' #...
'0000000000000000000000000000000000000000025',
]
# Parenthesized string continuation with messed up indentation
{
"key": (
[],
'a'
'b'
'c'
)
}
```
## Outputs
@ -259,6 +269,9 @@ test_particular = [
"1.0000000000000000000000000000000000000000000010000" # ...
"0000000000000000000000000000000000000000025",
]
# Parenthesized string continuation with messed up indentation
{"key": ([], "a" "b" "c")}
```
@ -404,6 +417,9 @@ test_particular = [
'1.0000000000000000000000000000000000000000000010000' # ...
'0000000000000000000000000000000000000000025',
]
# Parenthesized string continuation with messed up indentation
{'key': ([], 'a' 'b' 'c')}
```