Skip to content

Commit

Permalink
fix: correctly convert TaskOptions option property into Python dictio…
Browse files Browse the repository at this point in the history
…nnary
  • Loading branch information
qdelamea-aneo committed Nov 18, 2024
1 parent 7d76424 commit 033ae55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/python/src/armonik/common/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def from_message(cls, task_options):
application_namespace=task_options.application_namespace,
application_service=task_options.application_service,
engine_type=task_options.engine_type,
options=task_options.options,
options={k: v for k, v in task_options.options.items()},
)

def to_message(self) -> RawTaskOptions:
Expand Down

0 comments on commit 033ae55

Please sign in to comment.