Skip to content

Commit

Permalink
eslint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Felquis committed Feb 3, 2017
1 parent 06ce1a0 commit db1d1ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/boleto.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ Boleto.prototype._calculate = function () {
Boleto.prototype.renderHTML = function (callback) {
var self = this

var renderOptions = self.bank.options;
renderOptions.boleto = self;
var renderOptions = self.bank.options
renderOptions.boleto = self

// Copy renderHelper's methods to renderOptions
for (var key in formatters) {
Expand All @@ -87,8 +87,8 @@ Boleto.prototype.renderHTML = function (callback) {
var html = ejs.renderFile(__dirname + '/../assets/layout.ejs', renderOptions, {
cache: true
}, function (err, html) {
callback(html);
});
callback(html)
})
}

module.exports = function (_banks) {
Expand Down

0 comments on commit db1d1ee

Please sign in to comment.