Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaminduR committed Jan 23, 2021
1 parent 97c2211 commit 5c2760a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spark_privacy_preserver/mondrian_utils/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def agg_numerical_column(series):
string = '0-'
else:
if (minm[-1]=='0'):
string = minm +"-"
string = minm +"-"
else:
min_start = minm[:-1]
if(minimum >= int(min_start+'5')):
Expand All @@ -199,7 +199,7 @@ def agg_numerical_column(series):
string += '5'
else:
if(maxm[-1]=='0'):
string += maxm
string += maxm
else:
max_start = maxm[:-1]
if(maximum > int(max_start+'5')):
Expand Down

0 comments on commit 5c2760a

Please sign in to comment.