X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/data/cases/ignore_pyi.py diff --git a/.vim/bundle/black/tests/data/cases/ignore_pyi.py b/.vim/bundle/black/tests/data/cases/ignore_pyi.py deleted file mode 100644 index 4fae7530..00000000 --- a/.vim/bundle/black/tests/data/cases/ignore_pyi.py +++ /dev/null @@ -1,42 +0,0 @@ -# flags: --pyi -def f(): # type: ignore - ... - -class x: # some comment - ... - -class y: - ... # comment - -# whitespace doesn't matter (note the next line has a trailing space and tab) -class z: - ... - -def g(): - # hi - ... - -def h(): - ... - # bye - -# output - -def f(): # type: ignore - ... - -class x: # some comment - ... - -class y: ... # comment - -# whitespace doesn't matter (note the next line has a trailing space and tab) -class z: ... - -def g(): - # hi - ... - -def h(): - ... - # bye