Skip to content

Commit

Permalink
CR hound
Browse files Browse the repository at this point in the history
  • Loading branch information
boly38 committed Oct 4, 2022
1 parent c940d18 commit 1a28844
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manual_1m_day.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const manual = new Manual();
var options = manual.getOptions()
options.period = '1month';
options.unit = 'day';
await manual.report(options);
manual.report(options);
2 changes: 1 addition & 1 deletion manual_1m_hour.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const manual = new Manual();
var options = manual.getOptions()
options.period = '1month';
options.unit = 'hour';
await manual.report(options);
manual.report(options);
2 changes: 1 addition & 1 deletion manual_1w_day.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const manual = new Manual();
var options = manual.getOptions()
options.period = '1week';
options.unit = 'day';
await manual.report(options);
manual.report(options);
2 changes: 1 addition & 1 deletion manual_1w_hour.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ const manual = new Manual();
var options = manual.getOptions()
options.period = '1week';
options.unit = 'hour';
await manual.report(options);
manual.report(options);
2 changes: 1 addition & 1 deletion manual_24h_hour.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import Manual from './manual.js';

const manual = new Manual();

await manual.report(manual.getOptions());
manual.report(manual.getOptions());

0 comments on commit 1a28844

Please sign in to comment.