Skip to content

Commit

Permalink
roll lint
Browse files Browse the repository at this point in the history
  • Loading branch information
weberlo committed Jun 30, 2020
1 parent 2457092 commit 1ad274c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tvm/relay/analysis/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ def __init__(self):
TypeVisitor.__init__(self)
self.dtypes = set()

def visit_tensor_type(self, tty):
self.dtypes.add(tty.dtype)
def visit_tensor_type(self, tt):
self.dtypes.add(tt.dtype)


class ExprDtypeCollector(ExprVisitor):
Expand Down

0 comments on commit 1ad274c

Please sign in to comment.