Skip to content

Commit

Permalink
Merge pull request #823 from dinukadesilva/fix-number-formats-in-pe-c…
Browse files Browse the repository at this point in the history
…e-ro-pr-3

Fix PE-CE-RO-PR-3
  • Loading branch information
dinukadesilva authored Aug 20, 2020
2 parents 16edc14 + 42e4556 commit 55df718
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def html(self, title="", total_registered_voters=None):

data_row.append(position_of_candidate)
data_row.append("%s - %s" % (candidate_number, candidate_name))
data_row.append("" if math.isnan(num_value) else num_value)
data_row.append(num_value)
data_row.append("")
data_row.append(position_of_candidate)

Expand Down

0 comments on commit 55df718

Please sign in to comment.