From 4550137d489eec729fd8aaf94fc43b3d937fdc3b Mon Sep 17 00:00:00 2001 From: viet nguyen <3805254+vnugent@users.noreply.github.com> Date: Wed, 29 May 2024 17:36:32 +0200 Subject: [PATCH] fix linting error --- src/db/utils/jobs/MapTiles/exportCmd.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/db/utils/jobs/MapTiles/exportCmd.ts b/src/db/utils/jobs/MapTiles/exportCmd.ts index b9ad39a..6af22bf 100644 --- a/src/db/utils/jobs/MapTiles/exportCmd.ts +++ b/src/db/utils/jobs/MapTiles/exportCmd.ts @@ -19,7 +19,6 @@ import { getOrganizationModel } from '../../../index.js' import { AggregateType } from '../../../AreaTypes.js' -import { OrganizationType } from '../../../OrganizationTypes.js' import { logger } from '../../../../logger.js' import { ClimbType } from '../../../ClimbTypes.js' import MutableMediaDataSource from '../../../../model/MutableMediaDataSource.js' @@ -311,7 +310,7 @@ function prepareWorkingDir (): void { async function onDBConnected (): Promise { logger.info('Start exporting crag data as Geojson') prepareWorkingDir() - // await exportLCOs() + await exportLCOs() await exportLeafCrags() await exportAreas() await gracefulExit()