formatting

deepsource-autofix-76c6eb20
Dan Gowans 2022-08-30 13:25:40 -04:00
parent d29c6b5d29
commit bf416266a1
1 changed files with 9 additions and 2 deletions

View File

@ -1,11 +1,18 @@
import sqlite from "better-sqlite3"; import sqlite from "better-sqlite3";
import { import {
lotOccupancyDB as databasePath lotOccupancyDB as databasePath
} from "../../data/databasePaths.js"; } from "../../data/databasePaths.js";
import {
getLotComments
} from "./getLotComments.js";
import {
getLotOccupancies
} from "./getLotOccupancies.js";
import type * as recordTypes from "../../types/recordTypes"; 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 => { export const getLot = (lotId: number | string): recordTypes.Lot => {