Skip to content
Snippets Groups Projects
Commit 3d664b9f authored by Alexander Pace's avatar Alexander Pace
Browse files

gracedb-2.28.1

parent 9bb22f9d
No related branches found
No related tags found
1 merge request!233gracedb-2.28.1
Pipeline #655768 passed
......@@ -48,7 +48,7 @@ INFO_BANNER_MESSAGE = "TEST MESSAGE"
BETA_REPORTS_LINK = False
# Version ---------------------------------------------------------------------
PROJECT_VERSION = '2.28.0'
PROJECT_VERSION = '2.28.1'
# Unauthenticated access ------------------------------------------------------
# This variable should eventually control whether unauthenticated access is
......
......@@ -75,4 +75,4 @@ def json_text(graceid, data_format):
prob = ''
return mark_safe(join_char.join([html_format.format(prob=prob, source=i,
value=round(data[i], 6)) for i in data]))
value=(round(data[i], 6) if isinstance(data[i], float) else data[i])) for i in data]))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment