X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/fmtonoff4.py..refs/heads/master:/.vim/bundle/black/tests/data/cases/static/gitweb.js diff --git a/.vim/bundle/black/tests/data/fmtonoff4.py b/.vim/bundle/black/tests/data/fmtonoff4.py deleted file mode 100644 index 4ca7079..0000000 --- a/.vim/bundle/black/tests/data/fmtonoff4.py +++ /dev/null @@ -1,36 +0,0 @@ -# fmt: off -@test([ - 1, 2, - 3, 4, -]) -# fmt: on -def f(): pass - -@test([ - 1, 2, - 3, 4, -]) -def f(): pass - -# output - -# fmt: off -@test([ - 1, 2, - 3, 4, -]) -# fmt: on -def f(): - pass - - -@test( - [ - 1, - 2, - 3, - 4, - ] -) -def f(): - pass