Skip to content

Commit

Permalink
set assembly_name default value to empty string instead of None
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalebi committed Jul 1, 2024
1 parent e2d70b2 commit cd57517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tark/tark_web/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def transcript_details(request, stable_id_with_version, search_identifier):
host_url = ApiUtils.get_host_url(request)

# get assembly name
assembly_name = request.GET.get('assembly_name', None)
assembly_name = request.GET.get('assembly_name', '')

# get transcript details
query_url_details = "/api/transcript/stable_id_with_version/?stable_id_with_version=" + stable_id_with_version + \
Expand Down

0 comments on commit cd57517

Please sign in to comment.