X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/882d8795c6ff65c02f2657e596391748d1b6b7f5:/tests/data/cases/ignore_pyi.py..HEAD:/.vim/bundle/black/tests/data/cases/static/gitweb.js diff --git a/tests/data/cases/ignore_pyi.py b/tests/data/cases/ignore_pyi.py deleted file mode 100644 index 4fae753..0000000 --- a/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