Skip to content

Commit 8f9097e

Browse files
committed
fix indentation
1 parent 8c5380c commit 8f9097e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tseries/resample.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -887,8 +887,8 @@ def _upsample(self, method, limit=None, fill_value=None):
887887
" datetime-like")
888888
# we may need to actually resample as if we are timestamps
889889
if self.kind == 'timestamp':
890-
return super(PeriodIndexResampler, self)._upsample(method,
891-
limit=limit, fill_value=fill_value)
890+
return super(PeriodIndexResampler, self)._upsample(
891+
method, limit=limit, fill_value=fill_value)
892892

893893
ax = self.ax
894894
obj = self.obj

0 commit comments

Comments
 (0)