Pylint fix

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
Yong Tang 2020-04-06 23:59:44 +00:00
parent 42b0014216
commit 9319da2277
1 changed files with 5 additions and 1 deletions

View File

@ -949,7 +949,11 @@ class ComparisonOpTest(test.TestCase):
f(x.astype(t), y.astype(t))
def testEqualDType(self):
dtypes = [np.float16, np.float32, np.float64, np.int8, np.int16, np.int32, np.int64, np.uint8, np.uint16, np.uint32, np.uint64]
dtypes = [
np.float16, np.float32, np.float64,
np.int8, np.int16, np.int32, np.int64,
np.uint8, np.uint16, np.uint32, np.uint64,
]
x = np.asarray([0, 1, 2, 3, 4])
y = np.asarray([0, 1, 2, 3, 4])
for dtype in dtypes: