Merge branch 'Pi_fix' into 'master'
Pi display fix See merge request cara/cara!131
This commit is contained in:
commit
61f32e25d3
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ def non_zero_percentage (percentage: int) -> str:
|
|||
if percentage < 0.01:
|
||||
return "<0.01%"
|
||||
else:
|
||||
return "{:0.0f}%".format(percentage)
|
||||
return "{:0.2f}%".format(percentage)
|
||||
|
||||
def manufacture_alternative_scenarios(form: FormData) -> typing.Dict[str, models.ExposureModel]:
|
||||
scenarios = {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue