Skip to content

Commit

Permalink
added item name, type
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Dec 19, 2024
1 parent 0651080 commit 2d9c20c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sempy_labs/_job_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ def list_item_job_instances(
df = pd.DataFrame(
columns=[
"Job Instance Id",
"Item Name",
"Item Id",
"Item Type",
"Job Type",
"Invoke Type",
"Status",
Expand All @@ -71,7 +73,9 @@ def list_item_job_instances(
for v in r.get("value", []):
new_data = {
"Job Instance Id": v.get("id"),
"Item Name": item_name,
"Item Id": v.get("itemId"),
"Item Type": type,
"Job Type": v.get("jobType"),
"Invoke Type": v.get("invokeType"),
"Status": v.get("status"),
Expand Down

0 comments on commit 2d9c20c

Please sign in to comment.