Files
openide/python/testData/formatter/forceNewLineBeforeRightBraceInDictAfterColon_after.py
Mikhail Golubev cde29bdae2 PY-17674 Add linefeed before right brace in dict literals when it's preceded by colon
Rules about literal braces is considered earlier than those for colons
in spacing builder.
2015-11-17 12:55:40 +03:00

13 lines
244 B
Python

incoming_invite_post_schema = {
"definitions": {
"player": {
"type": "object",
"properties": {
"id": {
"type": "integer"
}
},
}
}
}