From cb692346519fe5621c9df8a1dfb3ae3f8a2aeec4 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Fri, 7 Oct 2022 23:30:44 -0500 Subject: [PATCH] Lint --- db/mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/mod.ts b/db/mod.ts index 624816f..7c4bfeb 100644 --- a/db/mod.ts +++ b/db/mod.ts @@ -18,7 +18,7 @@ const pool = new Pool(config.postgres.url, 3, true); export async function queryObject( sql: string, - args: QueryArguments[], + args?: QueryArguments, ): Promise | null> { let result = null; try {