Skip to content

Commit dc991c2

Browse files
committed
fix pylint
1 parent e52d339 commit dc991c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2979,8 +2979,8 @@ def test_Conv2DBackpropInput_valid(self):
29792979
@check_opset_min_version(1, "CategoryMapper")
29802980
def test_hashtable_lookup(self):
29812981
filnm = "vocab.tmp"
2982-
words = ["apple","pear","banana","cherry","grape"]
2983-
query = np.array(['cherry'],dtype=object)
2982+
words = ["apple", "pear", "banana", "cherry", "grape"]
2983+
query = np.array(['cherry'], dtype=object)
29842984
with open(filnm, "w") as f:
29852985
for word in words:
29862986
f.write(word + "\n")

0 commit comments

Comments
 (0)