Skip to content

Commit

Permalink
py3 compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
percious committed May 3, 2018
1 parent 575deeb commit 57a069c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cr/cube/dimension.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def hs_indices(self):
} for subtotal in self.subtotals]

# filter where indices aren't available to sum
indices = filter(lambda x: len(x['inds']) > 0, indices)
indices = [ind for ind in indices if len(ind['inds']) > 0]

return indices

Expand Down

0 comments on commit 57a069c

Please sign in to comment.