Skip to content

Commit

Permalink
fix exception import stack
Browse files Browse the repository at this point in the history
  • Loading branch information
TShapinsky committed Jan 7, 2025
1 parent dbc3978 commit 9b56504
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion alfalfa_worker/jobs/openstudio/create_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

from alfalfa_worker.jobs.openstudio import lib_dir
from alfalfa_worker.lib.enums import RunStatus, SimType
from alfalfa_worker.lib.job import Job, JobExceptionInvalidModel
from alfalfa_worker.lib.job import Job
from alfalfa_worker.lib.job_exception import JobExceptionInvalidModel
from alfalfa_worker.lib.utils import rel_symlink


Expand Down
7 changes: 3 additions & 4 deletions alfalfa_worker/jobs/step_run_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@

from alfalfa_worker.lib.constants import DATETIME_FORMAT
from alfalfa_worker.lib.enums import AutoName, RunStatus
from alfalfa_worker.lib.job import (
Job,
from alfalfa_worker.lib.job import Job, message
from alfalfa_worker.lib.job_exception import (
JobException,
JobExceptionSimulation,
message
JobExceptionSimulation
)
from alfalfa_worker.lib.utils import to_bool

Expand Down

0 comments on commit 9b56504

Please sign in to comment.