X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/fmtskip5.py..d1aee5f7fa136b1f0a7d8dfc318af81009074070:/.vim/bundle/black/tests/data/cases/static/git-logo.png diff --git a/.vim/bundle/black/tests/data/fmtskip5.py b/.vim/bundle/black/tests/data/fmtskip5.py deleted file mode 100644 index d7b15e0..0000000 --- a/.vim/bundle/black/tests/data/fmtskip5.py +++ /dev/null @@ -1,22 +0,0 @@ -a, b, c = 3, 4, 5 -if ( - a == 3 - and b != 9 # fmt: skip - and c is not None -): - print("I'm good!") -else: - print("I'm bad") - - -# output - -a, b, c = 3, 4, 5 -if ( - a == 3 - and b != 9 # fmt: skip - and c is not None -): - print("I'm good!") -else: - print("I'm bad")