Skip to content

Commit c66e801

Browse files
Apply pre-commit fixes
1 parent f1d1e4d commit c66e801

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/blosc2/exceptions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
21
class MissingOperands(ValueError):
32
def __init__(self, expr, missing_ops):
43
self.expr = expr
54
self.missing_ops = missing_ops
65

7-
message = f"Lazy expression \"{expr}\" with missing operands: {missing_ops}"
6+
message = f'Lazy expression "{expr}" with missing operands: {missing_ops}'
87
super().__init__(message)

0 commit comments

Comments
 (0)