Skip to content

Commit aff27c7

Browse files
committed
Added Attributes for Tick class in offsets.pyx
1 parent 9e7abc8 commit aff27c7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pandas/_libs/tslibs/offsets.pyx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,20 @@ cdef class SingleConstructorOffset(BaseOffset):
934934
# Tick Offsets
935935

936936
cdef class Tick(SingleConstructorOffset):
937+
"""
938+
Offset ``n`` ticks.
939+
940+
Attributes
941+
----------
942+
n : int, default 1
943+
The number of ticks represented.
944+
normalize : bool, default False
945+
Normalize start/end dates to midnight before generating date range.
946+
947+
See Also
948+
--------
949+
:class:`~pandas.tseries.offsets.DateOffset` : Standard kind of date increment.
950+
937951
_adjust_dst = False
938952
_prefix = "undefined"
939953
_attributes = tuple(["n", "normalize"])

0 commit comments

Comments
 (0)