Skip to content

Commit

Permalink
Merge pull request #22 from seeq12/bugfix/jh/spy-push-unassigned-work…
Browse files Browse the repository at this point in the history
…book-sheet

Bugfix/jh/spy push unassigned workbook sheet
  • Loading branch information
jameshiggie authored Dec 22, 2023
2 parents 08e1f0c + 863d9d8 commit 90fd209
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs_src/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
v0.3.9
---
Seeq spy.push bug fix

v0.3.8
---
Seeq spy.workbook.search bug fix
Expand Down
6 changes: 4 additions & 2 deletions seeq/addons/mps/_mps.py
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,8 @@ def push_mps_results_batch(batch_sim_df, workbook_id, condition_name, Sheet_inde

push_result_2["Value Unit Of Measure"] = "%"
push_result_2["Maximum Interpolation"] = "1 sec"
spy.push(metadata=push_result_2, quiet=True)
spy.push(metadata=push_result_2, workbook=workbook_id,
worksheet=worksheet_name, quiet=True)

end = True

Expand Down Expand Up @@ -1061,7 +1062,8 @@ def push_mps_results(

push_result_2["Value Unit Of Measure"] = "%"
push_result_2["Maximum Interpolation"] = "1 sec"
spy.push(metadata=push_result_2, quiet=True)
spy.push(metadata=push_result_2, workbook=workbook_id,
worksheet=worksheet_name, quiet=True)

# push worksheet back in after overwrite
new_display_items = pd.concat([current_display_items, push_result, push_result_2], axis=0, sort=True)
Expand Down
2 changes: 1 addition & 1 deletion seeq/addons/mps/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.8'
__version__ = '0.3.9'

0 comments on commit 90fd209

Please sign in to comment.