Format target: annotation = value? expressions (#5661)

This commit is contained in:
Micha Reiser 2023-07-11 16:40:28 +02:00 committed by GitHub
parent 0c8ec80d7b
commit f1d367655b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 318 additions and 988 deletions

View file

@ -0,0 +1,3 @@
{
"magic_trailing_comma": "ignore"
}

View file

@ -0,0 +1,13 @@
a: string
b: string = "test"
b: list[
string,
int
] = [1, 2]
b: list[
string,
int,
] = [1, 2]