Skip to content

Commit

Permalink
chore: prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianMazur committed Jun 18, 2024
1 parent 969b7a5 commit 423cab9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/events/http/HttpServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ export default class HttpServer {
message: errorMessage,
type: err.constructor.name,
stackTrace: this.#getArrayStackTrace(err.stack),
})
}),
}

log.error(errorMessage)
Expand Down
2 changes: 1 addition & 1 deletion src/lambda/handler-runner/python-runner/PythonRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default class PythonRunner {
const onErr = (data) => {
log.notice(data.toString())

rej(new Error('Internal Server Error'))
rej(new Error("Internal Server Error"))
}

const onLine = (line) => {
Expand Down

0 comments on commit 423cab9

Please sign in to comment.