Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pre-commit hooks #361

Merged
merged 2 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.6
rev: v0.9.4
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
Expand Down
8 changes: 4 additions & 4 deletions doc/getting_started/tutorials/05.persistent-reductions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@
"t1 = time.time()\n",
"print(lazy_expression.shape)\n",
"t2 = time.time()\n",
"print(f\"Time to get shape:{t2-t1:.5f}\")\n",
"print(f\"Time to get shape:{t2 - t1:.5f}\")\n",
"t1 = time.time()\n",
"result1 = lazy_expression.compute()\n",
"t2 = time.time()\n",
"print(f\"Time to compute:{t2-t1:.5f}\")\n",
"print(f\"Time to compute:{t2 - t1:.5f}\")\n",
"print(\"Result of the operation (slice):\")\n",
"print(result1[:2, :4]) # Print a small slice of the result for demonstration"
]
Expand Down Expand Up @@ -219,11 +219,11 @@
"t1 = time.time()\n",
"print(lazy_expression.shape)\n",
"t2 = time.time()\n",
"print(f\"Time to get shape:{t2-t1:.5f}\")\n",
"print(f\"Time to get shape:{t2 - t1:.5f}\")\n",
"t1 = time.time()\n",
"result2 = lazy_expression.compute()\n",
"t2 = time.time()\n",
"print(f\"Time to compute:{t2-t1:.5f}\")\n",
"print(f\"Time to compute:{t2 - t1:.5f}\")\n",
"print(\"Result of the operation (slice):\")\n",
"print(result2[:2, :4])"
]
Expand Down
2 changes: 1 addition & 1 deletion examples/ndarray/filter_sort_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
print(f"type of farr: {farr.dtype}, type of arr: {arr.dtype}")

if isinstance(farr, np.ndarray):
print(f"nbytes of farr: {farr.nbytes / 2 ** 20:.2f}MB")
print(f"nbytes of farr: {farr.nbytes / 2**20:.2f}MB")
# We cannot proceed anymore
sys.exit(1)

Expand Down
24 changes: 12 additions & 12 deletions src/blosc2/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ def wrapper(child_func):
for line in parent_func.__doc__.splitlines():
if parameter in line:
match = re.search(rf"(\s*){parameter}", line)
assert (
match is not None
), f"Parameter {parameter} not found in the docstring of {parent_func.__name__}"
assert match is not None, (
f"Parameter {parameter} not found in the docstring of {parent_func.__name__}"
)
indent_parent = match.group(1)

# The first line should be without the indentation because it will be placed at the correct location
Expand All @@ -32,15 +32,15 @@ def wrapper(child_func):
# Next parameter starts, stop copying lines
break
matching_lines.append(line)
assert (
len(matching_lines) > 0
), f"Could not extract the parameter {parameter} from the docstring of {parent_func.__name__}"
assert len(matching_lines) > 0, (
f"Could not extract the parameter {parameter} from the docstring of {parent_func.__name__}"
)

# Replace the indentation of the parent with the indentation used in the child function
match = re.search(rf"([ \t]+){parameter}", child_func.__doc__)
assert (
match is not None
), f"Parameter {parameter} not found in the docstring of {child_func.__name__}"
assert match is not None, (
f"Parameter {parameter} not found in the docstring of {child_func.__name__}"
)
indent_child = match.group(1)

# First line contains the parameter name itself which should not be indented
Expand All @@ -53,9 +53,9 @@ def wrapper(child_func):
if replacements is not None:
for regex, repl in replacements.items():
new_doc = re.sub(regex, repl, child_func.__doc__)
assert (
new_doc != child_func.__doc__
), f"The replacement rule {regex}: {repl} did not change the docstring of {child_func.__name__}"
assert new_doc != child_func.__doc__, (
f"The replacement rule {regex}: {repl} did not change the docstring of {child_func.__name__}"
)
child_func.__doc__ = new_doc

return child_func
Expand Down
7 changes: 1 addition & 6 deletions src/blosc2/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,7 @@ def info_html_report(items: list) -> str:
report = '<table class="NDArray-info">'
report += "<tbody>"
for k, v in items:
report += (
f"<tr>"
f'<th style="text-align: left">{k}</th>'
f'<td style="text-align: left">{v}</td>'
f"</tr>"
)
report += f'<tr><th style="text-align: left">{k}</th><td style="text-align: left">{v}</td></tr>'
report += "</tbody>"
report += "</table>"
return report
Expand Down
Loading