Linter fixes
[e-mobility-charging-stations-simulator.git] / src / worker / WorkerDynamicPool.ts
index 5e23587916cd1b5831eb800c0fbc8793dbdd1d36..f842614f82b20e6476e949f22bda5d797404f5a3 100644 (file)
@@ -2,10 +2,10 @@ import type { Worker } from 'worker_threads';
 
 import { DynamicThreadPool, type ErrorHandler, type ExitHandler } from 'poolifier';
 
-import type { WorkerData, WorkerOptions } from '../types/Worker';
-import Utils from '../utils/Utils';
 import WorkerAbstract from './WorkerAbstract';
 import { WorkerUtils } from './WorkerUtils';
+import type { WorkerData, WorkerOptions } from '../types/Worker';
+import Utils from '../utils/Utils';
 
 export default class WorkerDynamicPool extends WorkerAbstract<WorkerData> {
   private readonly pool: DynamicThreadPool<WorkerData>;