Skip to content

Commit

Permalink
Remove debugging output.
Browse files Browse the repository at this point in the history
  • Loading branch information
tshead2 committed Aug 8, 2013
1 parent 16f2aa8 commit de150c2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/slycat/analysis/plugins/histogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,11 @@ def calculate_global_bins_list(self):
return bins_list

def calculate_local_histograms(self, bins_list):
slycat.analysis.worker.log.debug("calculate_local_histograms: %s", bins_list)
histograms = [slycat.analysis.worker.accumulator.histogram(bins) for bins in bins_list]
with self.source.iterator() as source_iterator:
for ignored in source_iterator:
for index, histogram in enumerate(histograms):
histogram.accumulate(source_iterator.values(index))
slycat.analysis.worker.log.debug("histograms: %s", histograms)
return histograms

def calculate_global_histograms(self):
Expand Down

0 comments on commit de150c2

Please sign in to comment.