Fix assert unreachable, remove unused variables (#13753)

Small code cleanup
This commit is contained in:
Félix Malfait
2025-08-08 09:04:45 +02:00
committed by GitHub
parent 8b4b9ef8da
commit 0236f79ccf
105 changed files with 172 additions and 315 deletions
@@ -1,4 +1,4 @@
import { Logger, Scope } from '@nestjs/common';
import { Scope } from '@nestjs/common';
import { And, Any, ILike, In, Not, Or } from 'typeorm';
@@ -22,10 +22,6 @@ export type BlocklistItemDeleteCalendarEventsJobData = WorkspaceEventBatch<
scope: Scope.REQUEST,
})
export class BlocklistItemDeleteCalendarEventsJob {
private readonly logger = new Logger(
BlocklistItemDeleteCalendarEventsJob.name,
);
constructor(
private readonly twentyORMManager: TwentyORMManager,
private readonly calendarEventCleanerService: CalendarEventCleanerService,