Skip to content

Commit 29ccc8b

Browse files
joseph-isaacsclaude
andcommitted
Format the cuDF Parquet read script with ruff
`uvx ruff format --check .` failed the Python (lint) job on the `--iterations` argument: the call was wrapped across three lines, but at 91 characters it fits inside the repository's 120-character limit, so ruff collapses it to one line. Ran `uvx ruff format` rather than hand-editing so the result matches CI byte for byte. `uvx ruff format --check .` and `uvx ruff check .` both pass locally now. Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk> Co-Authored-By: Claude <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016FnRK96p8jiB9NdSKxU2iy
1 parent bce42c1 commit 29ccc8b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

scripts/cudf-parquet-read.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ def verify(path: str, frame) -> None:
7171
def main() -> int:
7272
parser = argparse.ArgumentParser(description=__doc__)
7373
parser.add_argument("path", help="Parquet file to read")
74-
parser.add_argument(
75-
"--iterations", type=int, default=1, help="timed reads to perform"
76-
)
74+
parser.add_argument("--iterations", type=int, default=1, help="timed reads to perform")
7775
parser.add_argument(
7876
"--verify",
7977
action="store_true",

0 commit comments

Comments
 (0)