2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-02-25 23:02:20 +00:00

Fix indentation error

This commit is contained in:
Jarrod Johnson 2019-04-26 16:40:47 -04:00
parent 7a08fee4b5
commit c8c275f804

View File

@ -112,13 +112,13 @@ if args.v and n is not None and nodebydatum:
while len(bins) and bins[0] < datum:
nextbin = bins[0]
bins = bins[1:]
if not nextbin:
nextbin = np.max(plotdata)
print('Entries between {0} and {1}'.format(currbin, nextbin))
print('-' * 80)
print(','.join(sorted(currbinmembers)))
print('')
print('')
currbinmembers = []
if not nextbin:
nextbin = np.max(plotdata)
print('Entries between {0} and {1}'.format(currbin, nextbin))
print('-' * 80)
print(','.join(sorted(currbinmembers)))
print('')
print('')
currbinmembers = []
for node in nodebydatum[datum]:
currbinmembers.append(node)