Skip to content

Commit 5b7662f

Browse files
committed
fixup
1 parent 05e238d commit 5b7662f

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""""
1+
"""
22
DataFrame
33
---------
44
An efficient 2D container for potentially mixed-type time series or other

pandas/core/generic.py

-1
Original file line numberDiff line numberDiff line change
@@ -5254,7 +5254,6 @@ def pipe(self, func, *args, **kwargs):
52545254
>>> s = pd.Series(range(3))
52555255
>>> s
52565256
0 0
5257-
52585257
1 1
52595258
2 2
52605259
dtype: int64

pandas/errors/__init__.py

-8
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,6 @@ class DuplicateLabelError(ValueError):
171171
"""
172172

173173

174-
class NullFrequencyError(ValueError):
175-
"""
176-
Error raised when a null `freq` attribute is used in an operation
177-
that needs a non-null frequency, particularly `DatetimeIndex.shift`,
178-
`TimedeltaIndex.shift`, `PeriodIndex.shift`.
179-
"""
180-
181-
182174
class AccessorRegistrationWarning(Warning):
183175
"""Warning for attribute conflicts in accessor registration."""
184176

0 commit comments

Comments
 (0)