Skip to content

Commit

Permalink
Paso los valores de indicadores a usar en el reporte a int
Browse files Browse the repository at this point in the history
    refs:#234
  • Loading branch information
lucaslavandeira committed Mar 27, 2018
1 parent 2aa79f7 commit 8c7ed43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def _get_indicator_value(self, indicator_type, node=None):
if not indicator_queryset:
return 0

return sum([indic.value for indic in indicator_queryset])
return int(sum([indic.value for indic in indicator_queryset]))

def calculate_indicators(self):

Expand Down

0 comments on commit 8c7ed43

Please sign in to comment.