types and lint

This commit is contained in:
Martin McKeaveney 2024-11-19 19:03:54 +00:00
parent 79c515e57d
commit 70b9e4680f
1 changed files with 3 additions and 1 deletions

View File

@ -90,7 +90,9 @@ class SnowflakePromise {
async execute(sql: string) {
if (!this.client) {
throw Error("No snowflake client present to execute query. Run connect() first to initialise.")
throw Error(
"No snowflake client present to execute query. Run connect() first to initialise."
)
}
return new Promise((resolve, reject) => {