Skip to content

Commit

Permalink
chore: tidy up the type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
barjin committed Jan 20, 2025
1 parent 7594493 commit 54af4ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic-crawler/src/internals/basic-crawler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ export class BasicCrawler<Context extends CrawlingContext = BasicCrawlingContext
this.events.on(EventType.MIGRATING, boundPauseOnMigration);
this.events.on(EventType.ABORTING, boundPauseOnMigration);

let stats: FinalStatistics = {} as FinalStatistics;
let stats = {} as FinalStatistics;

try {
await this.autoscaledPool!.run();
Expand Down

0 comments on commit 54af4ba

Please sign in to comment.