Skip to content

Commit

Permalink
Remove debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzo committed Mar 12, 2015
1 parent e0451b6 commit 6b25342
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion loom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = '0.2.9'
__version__ = '0.2.10'

import os

Expand Down
1 change: 0 additions & 1 deletion loom/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ def entropy(
result = {}
for i in xrange(0, len(row_sets), tile_size):
row_tile = row_sets[i: i + tile_size]
print 'DEBUG', row_tile
for j in xrange(0, len(col_sets), tile_size):
col_tile = col_sets[j: j + tile_size]
result.update(self._entropy(
Expand Down

0 comments on commit 6b25342

Please sign in to comment.