X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/data/cases/pep_604.py diff --git a/.vim/bundle/black/tests/data/cases/pep_604.py b/.vim/bundle/black/tests/data/cases/pep_604.py deleted file mode 100644 index b68d59d6..00000000 --- a/.vim/bundle/black/tests/data/cases/pep_604.py +++ /dev/null @@ -1,25 +0,0 @@ -def some_very_long_name_function() -> my_module.Asdf | my_module.AnotherType | my_module.YetAnotherType | None: - pass - - -def some_very_long_name_function() -> my_module.Asdf | my_module.AnotherType | my_module.YetAnotherType | my_module.EvenMoreType | None: - pass - - -# output - - -def some_very_long_name_function() -> ( - my_module.Asdf | my_module.AnotherType | my_module.YetAnotherType | None -): - pass - - -def some_very_long_name_function() -> ( - my_module.Asdf - | my_module.AnotherType - | my_module.YetAnotherType - | my_module.EvenMoreType - | None -): - pass