X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785..d1aee5f7fa136b1f0a7d8dfc318af81009074070:/.vim/bundle/black/tests/data/cases/module_docstring_4.py diff --git a/.vim/bundle/black/tests/data/cases/module_docstring_4.py b/.vim/bundle/black/tests/data/cases/module_docstring_4.py new file mode 100644 index 0000000..515174d --- /dev/null +++ b/.vim/bundle/black/tests/data/cases/module_docstring_4.py @@ -0,0 +1,9 @@ +# flags: --preview +"""Single line module-level docstring should be followed by single newline.""" + +a = 1 + +# output +"""Single line module-level docstring should be followed by single newline.""" + +a = 1