diff --git a/src/printer-graphql.js b/src/printer-graphql.js index e72b032d..b5c2914d 100644 --- a/src/printer-graphql.js +++ b/src/printer-graphql.js @@ -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: