X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e4c55b48879c48bce2f3730ebb114aa2a67ab4d1..1af648d0c14342021bb8c4220fb8adcd7362d45d:/docs/black_primer.md diff --git a/docs/black_primer.md b/docs/black_primer.md index af41842..a2dd964 100644 --- a/docs/black_primer.md +++ b/docs/black_primer.md @@ -71,7 +71,7 @@ each parameter is explained below: "expect_formatting_changes": true, "git_clone_url": "https://github.com/cooperlees/aioexabgp.git", "long_checkout": false, - "py_versions": ["all", "3.8"] // "all" ignores all other versions + "py_versions": ["all", "3.8"] } } } @@ -103,9 +103,9 @@ Failed projects: +++ tests/b303_b304.py 2020-05-17 20:06:42.753851 +0000 @@ -26,11 +26,11 @@ maxint = 5 # this is okay - # the following shouldn't crash + # the following should not crash (a, b, c) = list(range(3)) - # it's different than this + # it is different than this a, b, c = list(range(3)) - a, b, c, = list(range(3)) + a, b, c = list(range(3))