PY-20392 Put space after trailing comma in dict literals if SPACE_AFTER_COMMA is enabled

This commit is contained in:
Mikhail Golubev
2016-08-25 15:07:13 +03:00
parent 7ae5998264
commit 2d8fe72a93
4 changed files with 8 additions and 0 deletions
@@ -0,0 +1 @@
dict = { 1: 'a', 2: 'b', 3: 'c',}
@@ -0,0 +1 @@
dict = {1: 'a', 2: 'b', 3: 'c', }