Skip to content

Commit

Permalink
Correct import URL
Browse files Browse the repository at this point in the history
  • Loading branch information
woodthom2 committed Aug 29, 2024
1 parent a499ae6 commit 5ba275b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/harmony/util/instrument_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ def import_instrument_into_harmony_web(instrument: Instrument, harmony_fe_base_u
instrument_json_b64_encoded_bytes = base64.urlsafe_b64encode(instrument_serialised_as_json.encode('utf-8'))
instrument_json_b64_encoded_str = instrument_json_b64_encoded_bytes.decode("utf-8")

url = f"{harmony_fe_base_url}/app/import/{instrument_json_b64_encoded_str}"
url = f"{harmony_fe_base_url}/app/#/import/{instrument_json_b64_encoded_str}"

return url

0 comments on commit 5ba275b

Please sign in to comment.