Skip to content

Commit ac3ca2f

Browse files
committed
Fix linter error
1 parent c8752a5 commit ac3ca2f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/db.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import pgPromise from "pg-promise"
22
import { wipeDB } from "./utils.js"
3-
import { process } from "node:process"
43

54
const pgp = pgPromise({})
65

7-
export const db = pgp(`postgres://postgres:${process.env.DRGON_POSTGRES_ADMIN_PASSWORD}@drgon-postgres:5433/drgon_db`)
6+
export const db = pgp(`postgres://postgres:${process.env.DRGON_POSTGRES_ADMIN_PASSWORD}@drgon-postgres:5433/drgon_db`) // eslint-disable-line no-undef
87

98
db.connect()
109
.then(async (obj) => {

0 commit comments

Comments
 (0)