Enforce quoting style in Travis. (#4589)

This commit is contained in:
justinwyang
2019-04-11 14:24:26 -07:00
committed by Robert Nishihara
parent 6697407ec4
commit e88e706fcc
79 changed files with 777 additions and 778 deletions
+10 -10
View File
@@ -38,19 +38,19 @@ if __name__ == "__main__":
space = [
{
'name': 'width',
'type': 'int',
'bounds': {
'min': 0,
'max': 20
"name": "width",
"type": "int",
"bounds": {
"min": 0,
"max": 20
},
},
{
'name': 'height',
'type': 'int',
'bounds': {
'min': -100,
'max': 100
"name": "height",
"type": "int",
"bounds": {
"min": -100,
"max": 100
},
},
]