Skip to content

Commit

Permalink
update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed May 16, 2024
1 parent e31b9ce commit 7432c0a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/pyarrow/_compute.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,10 @@ class PadOptions(_PadOptions):
Desired string length.
padding : str, default " "
What to pad the string with. Should be one byte or codepoint.
align_left_on_odd_padding : bool, default True
What to do if there is an odd number of padding characters (in case
of centered padding). Defaults to alignig on the left (i.e. adding
the extra padding character on the right).
"""

def __init__(self, width, padding=' ', align_left_on_odd_padding=True):
Expand Down

0 comments on commit 7432c0a

Please sign in to comment.