Skip to content

Commit

Permalink
Removed end page for integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vloothuis committed Dec 10, 2023
1 parent 502b15b commit 057f555
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Binary file modified public/port-0.0.0-py3-none-any.whl
Binary file not shown.
Binary file modified src/framework/processing/py/dist/port-0.0.0-py3-none-any.whl
Binary file not shown.
6 changes: 2 additions & 4 deletions src/framework/processing/py/port/script.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,6 @@ def process(sessionId):
meta_data.append(("debug", f"donate consent data"))
yield donate(f"{sessionId}", consent_result.value)

yield exit(0, "Success")
yield render_end_page()


def render_end_page():
page = props.PropsUIPageEnd()
Expand Down Expand Up @@ -223,5 +220,6 @@ def prompt_consent(table, meta_data):
def donate(key, json_string):
return CommandSystemDonate(key, json_string)


def exit(code, info):
return CommandSystemExit(code, info)
return CommandSystemExit(code, info)

0 comments on commit 057f555

Please sign in to comment.