Fix lint errors (#2062)

master
Tim Griesser 2017-06-08 12:49:24 -04:00 committed by Christopher Chedeau
parent 8a87681f66
commit 753ff5f0ac
1 changed files with 2 additions and 9 deletions

View File

@ -244,18 +244,11 @@ function genericPrint(path, options, print) {
}
case "NonNullType": {
return concat([
path.call(print, "type"),
"!"
]);
return concat([path.call(print, "type"), "!"]);
}
case "ListType": {
return concat([
"[",
path.call(print, "type"),
"]"
])
return concat(["[", path.call(print, "type"), "]"]);
}
default: