Skip to content

Commit

Permalink
Fix circular import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
XeonHis committed Dec 23, 2024
1 parent e5fdef3 commit 59061e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion omagent-core/src/omagent_core/engine/http/models/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re # noqa: F401

import six
from omagent_core.engine.http.models import WorkflowTask
from omagent_core.engine.http.models.workflow_task import WorkflowTask
from omagent_core.engine.http.models.task_result import TaskResult
from omagent_core.engine.http.models.task_result_status import TaskResultStatus

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import six
from omagent_core.engine.helpers.helper import ObjectMapper
from omagent_core.engine.http.models import WorkflowTask
from omagent_core.engine.http.models.workflow_task import WorkflowTask

object_mapper = ObjectMapper()

Expand Down

0 comments on commit 59061e5

Please sign in to comment.