From bf416266a14e55d1e30db6302736d53297a0d296 Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Tue, 30 Aug 2022 13:25:40 -0400 Subject: [PATCH] formatting --- helpers/lotOccupancyDB/getLot.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/helpers/lotOccupancyDB/getLot.ts b/helpers/lotOccupancyDB/getLot.ts index 043e98fe..d4f71919 100644 --- a/helpers/lotOccupancyDB/getLot.ts +++ b/helpers/lotOccupancyDB/getLot.ts @@ -1,11 +1,18 @@ import sqlite from "better-sqlite3"; + import { lotOccupancyDB as databasePath } from "../../data/databasePaths.js"; +import { + getLotComments +} from "./getLotComments.js"; + +import { + getLotOccupancies +} from "./getLotOccupancies.js"; + import type * as recordTypes from "../../types/recordTypes"; -import { getLotComments } from "./getLotComments.js"; -import { getLotOccupancies } from "./getLotOccupancies.js"; export const getLot = (lotId: number | string): recordTypes.Lot => {