Skip to content

Commit ecb7937

Browse files
Merge pull request #519 from DimitriPapadopoulos/PYL-E1111
Fix Pylint issue
2 parents 3816b86 + 49816ee commit ecb7937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ndarray/test_lazyexpr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,14 +1408,14 @@ def test_missing_operator():
14081408
a = blosc2.arange(10, urlpath="a.b2nd", mode="w")
14091409
b = blosc2.arange(10, urlpath="b.b2nd", mode="w")
14101410
expr = blosc2.lazyexpr("a + b")
1411-
c = expr.save("expr.b2nd", mode="w")
1411+
expr.save("expr.b2nd", mode="w")
14121412
# Remove the file for operand b
14131413
blosc2.remove_urlpath("b.b2nd")
14141414
# Re-open the lazy expression
14151415
with pytest.raises(blosc2.exceptions.MissingOperands) as excinfo:
14161416
blosc2.open("expr.b2nd")
14171417

1418-
# Check that some operand is missing"
1418+
# Check that some operand is missing
14191419
assert "a" not in excinfo.value.missing_ops
14201420
assert excinfo.value.missing_ops["b"] == pathlib.Path("b.b2nd")
14211421
assert excinfo.value.expr == "a + b"

0 commit comments

Comments
 (0)