X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/force_py36.py..HEAD:/.vim/bundle/black/tests/data/miscellaneous/force_py36.py diff --git a/.vim/bundle/black/tests/data/force_py36.py b/.vim/bundle/black/tests/data/miscellaneous/force_py36.py similarity index 88% rename from .vim/bundle/black/tests/data/force_py36.py rename to .vim/bundle/black/tests/data/miscellaneous/force_py36.py index cad935e..4c9b703 100644 --- a/.vim/bundle/black/tests/data/force_py36.py +++ b/.vim/bundle/black/tests/data/miscellaneous/force_py36.py @@ -1,6 +1,6 @@ # 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): ... +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. @@ -13,4 +13,4 @@ def long_function_name( argument_six, *rest, ): - ... + pass