X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/data/miscellaneous/force_py36.py diff --git a/.vim/bundle/black/tests/data/miscellaneous/force_py36.py b/.vim/bundle/black/tests/data/miscellaneous/force_py36.py deleted file mode 100644 index 4c9b7033..00000000 --- a/.vim/bundle/black/tests/data/miscellaneous/force_py36.py +++ /dev/null @@ -1,16 +0,0 @@ -# The input source must not contain any Py36-specific syntax (e.g. argument type -# annotations, trailing comma after *rest) or this test becomes invalid. -def long_function_name(argument_one, argument_two, argument_three, argument_four, argument_five, argument_six, *rest): pass -# output -# The input source must not contain any Py36-specific syntax (e.g. argument type -# annotations, trailing comma after *rest) or this test becomes invalid. -def long_function_name( - argument_one, - argument_two, - argument_three, - argument_four, - argument_five, - argument_six, - *rest, -): - pass