Skip to content

Commit

Permalink
updating linting
Browse files Browse the repository at this point in the history
  • Loading branch information
srinidhigoud committed Apr 23, 2021
1 parent 867ae40 commit 89ac729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"""TF: Tensorflow frontend."""
import warnings
from collections import defaultdict
from collections import deque

# Numpy support
import numpy as np
Expand Down Expand Up @@ -1778,7 +1779,6 @@ def _impl(inputs, attr, params, mod):
s0 = list(s0.asnumpy().reshape([-1]))
s1 = list(s1.asnumpy().reshape([-1]))
s0_size, s1_size = len(s0), len(s1)
from collections import deque

out = deque([])
for i in range(1, min(s0_size, s1_size) + 1):
Expand Down

0 comments on commit 89ac729

Please sign in to comment.