Skip to content

Commit

Permalink
[FIX] Remove debugging print statement (apache#7072)
Browse files Browse the repository at this point in the history
Somehow a unnecessary print statement was left in the codebase.
  • Loading branch information
tkonolige authored and trevor-m committed Jan 21, 2021
1 parent 626f8f1 commit 1b48797
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/tvm/tir/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ def __rlshift__(self, other):
return _ffi_api.left_shift(other, self, None)

def __rshift__(self, other):
print(type(other))
return _ffi_api.right_shift(self, other, None)

def __rrshift__(self, other):
Expand Down

0 comments on commit 1b48797

Please sign in to comment.