8000 Tseries fixtures docstrings by ivergara · Pull Request #21496 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Tseries fixtures docstrings #21496

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

Merged
merged 11 commits into from
Jul 8, 2018
Prev Previous commit
Next Next commit
complying with line length
  • Loading branch information
Ignacio Vergara Kausel committed Feb 23, 2018
commit 50a4e448cfd42bc28f827cf779ae4eef32382561
4 changes: 2 additions & 2 deletions pandas/tests/tseries/offsets/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def offset_types(request):
and o != 'MonthOffset'])
def month_classes(request):
"""
Fixture for all the month based datetime offsets available for a time series.
Fixture for month based datetime offsets available for a time series.
"""
return request.param

Expand All @@ -24,7 +24,7 @@ def month_classes(request):
issubclass(getattr(offsets, o), offsets.Tick)])
def tick_classes(request):
"""
Fixture for all the Tick (day, hour, ..., nano) based datetime offsets available for a time series.
Fixture for Tick based datetime offsets available for a time series.
"""
return request.param

Expand Down
0