Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix eslint
  • Loading branch information
AerysNan committed Sep 11, 2020
commit fee7eed5e74cd21eea1507922247274e9a99208d
6 changes: 3 additions & 3 deletions lib/plugins/leetcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ plugin.attachTags = function(problems, cb) {
return cb(e);
});
};
spin = h.spin("Downloading tags");
spin = h.spin('Downloading tags');
const q = new Queue(config.sys.tags, {}, getTag);
q.run(null, function (e) {
spin.stop();
Expand All @@ -125,8 +125,8 @@ plugin.getTagProblems = function(tag, cb) {
' }',
'}'
].join('\n'),
operationName: 'getTopicTag',
variables: { slug: tag },
variables: {slug: tag},
operationName: 'getTopicTag'
};
spin.text = 'Downloading tag ' + tag;
request(opts, function(e, resp, body) {
Expand Down