Skip to content

Commit 5384e89

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dfcd0bf commit 5384e89

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/gen_logo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def fill(rs):
3131
kwargs = {"x": "0", "y": "0", "width": f"{s}", "height": f"{s}", "stroke": "white"}
3232

3333
# large white squares for background
34-
bg_kwargs = {**kwargs, "width": f"{5*s}", "height": f"{5*s}", "style": "fill:white;"}
34+
bg_kwargs = {**kwargs, "width": f"{5 * s}", "height": f"{5 * s}", "style": "fill:white;"}
3535

3636

3737
root = ET.Element(

sparse/numba_backend/_utils.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -590,8 +590,7 @@ def check_zero_fill_value(*args):
590590
for i, arg in enumerate(args):
591591
if hasattr(arg, "fill_value") and not equivalent(arg.fill_value, _zero_of_dtype(arg.dtype)):
592592
raise ValueError(
593-
"This operation requires zero fill values, "
594-
f"but argument {i:d} had a fill value of {arg.fill_value!s}."
593+
f"This operation requires zero fill values, but argument {i:d} had a fill value of {arg.fill_value!s}."
595594
)
596595

597596

0 commit comments

Comments
 (0)