Skip to content
This repository has been archived by the owner on Dec 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #15 from sogno-platform/feature/api
Browse files Browse the repository at this point in the history
correct error message
  • Loading branch information
mgovers authored Nov 9, 2023
2 parents 61bec35 + e098f81 commit 62300be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pgm_service/pgm_powerflow/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async def _calculate(job: JobComplete):
job.status = Status.SUCCESS
except Exception as e:
job.status = Status.FAILED
job.details = e
job.details = repr(e)


@router.post("/")
Expand Down

0 comments on commit 62300be

Please sign in to comment.