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

docs: fix bold docstring due to indent #2122

Merged
merged 1 commit into from
Jan 16, 2023
Merged
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
6 changes: 3 additions & 3 deletions src/awkward/operations/ak_metadata_from_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ def metadata_from_parquet(
Returns dict containing

* `form`: an Awkward Form representing the low-level type of the data
(use `.type` to get a high-level type),
(use `.type` to get a high-level type),
* `fs`: the fsspec filesystem object,
* `paths`: a list of matching path names,
* `col_counts`: the number of rows in each row group,
* `columns`: the columns defined by the schema,
* `num_rows`: the length of the array that would be read by #ak.from_parquet ,
* `num_rows`: the length of the array that would be read by #ak.from_parquet,
* `num_row_groups`: the units that can be filtered (for the #ak.from_parquet `row_groups`
argument).
argument).

See also #ak.from_parquet, #ak.to_parquet.
"""
Expand Down