X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b:/tests/data/comment_after_escaped_newline.py..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/tests/data/static/git-logo.png diff --git a/tests/data/comment_after_escaped_newline.py b/tests/data/comment_after_escaped_newline.py deleted file mode 100644 index 133f489..0000000 --- a/tests/data/comment_after_escaped_newline.py +++ /dev/null @@ -1,18 +0,0 @@ -def bob(): \ - # pylint: disable=W9016 - pass - - -def bobtwo(): \ - \ - # some comment here - pass - -# output - -def bob(): # pylint: disable=W9016 - pass - - -def bobtwo(): # some comment here - pass