From adb96e08074a39f1413a5729e6c32c399e710f09 Mon Sep 17 00:00:00 2001 From: Nikolay Kolev Date: Thu, 29 Oct 2015 20:25:22 -0700 Subject: [PATCH] Remove redundant comments --- src/beautifiers/autopep8.coffee | 1 - src/beautifiers/yapf.coffee | 3 --- 2 files changed, 4 deletions(-) diff --git a/src/beautifiers/autopep8.coffee b/src/beautifiers/autopep8.coffee index e924755..7245d74 100644 --- a/src/beautifiers/autopep8.coffee +++ b/src/beautifiers/autopep8.coffee @@ -14,7 +14,6 @@ module.exports = class Autopep8 extends Beautifier } beautify: (text, language, options) -> - # console.log('autopep8', options, text, language) @run("autopep8", [ @tempFile("input", text) ["--max-line-length", "#{options.max_line_length}"] if options.max_line_length? diff --git a/src/beautifiers/yapf.coffee b/src/beautifiers/yapf.coffee index a463375..4fd8ecc 100644 --- a/src/beautifiers/yapf.coffee +++ b/src/beautifiers/yapf.coffee @@ -9,14 +9,11 @@ module.exports = class Yapf extends Beautifier name: "yapf" - # I decide to support no options since yapf is configured using its - # own configure file. options: { Python: false } beautify: (text, language, options) -> - # console.log('yapf', options, text, language) @run("yapf", [ ["--style=pep8"] @tempFile("input", text)