X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/data/cases/module_docstring_1.py diff --git a/.vim/bundle/black/tests/data/cases/module_docstring_1.py b/.vim/bundle/black/tests/data/cases/module_docstring_1.py deleted file mode 100644 index d5897b4d..00000000 --- a/.vim/bundle/black/tests/data/cases/module_docstring_1.py +++ /dev/null @@ -1,26 +0,0 @@ -# flags: --preview -"""Single line module-level docstring should be followed by single newline.""" - - - - -a = 1 - - -"""I'm just a string so should be followed by 2 newlines.""" - - - - -b = 2 - -# output -"""Single line module-level docstring should be followed by single newline.""" - -a = 1 - - -"""I'm just a string so should be followed by 2 newlines.""" - - -b = 2