Skip to content

Commit 7d3306a

Browse files
Fix Pylint issue
Assigning result of a function call, where the function has no return
1 parent d76405a commit 7d3306a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ndarray/test_lazyexpr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@ def test_missing_operator():
13971397
a = blosc2.arange(10, urlpath="a.b2nd", mode="w")
13981398
b = blosc2.arange(10, urlpath="b.b2nd", mode="w")
13991399
expr = blosc2.lazyexpr("a + b")
1400-
c = expr.save("expr.b2nd", mode="w")
1400+
expr.save("expr.b2nd", mode="w")
14011401
# Remove the file for operand b
14021402
blosc2.remove_urlpath("b.b2nd")
14031403
# Re-open the lazy expression

0 commit comments

Comments
 (0)