Skip to content

Commit 784fe75

Browse files
Albert Villanova del Moraljreback
Albert Villanova del Moral
authored andcommitted
Fix error: line too long
1 parent 1197b99 commit 784fe75

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tseries/index.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,8 @@ def intersection(self, other):
12031203
not other.offset.isAnchored() or
12041204
(not self.is_monotonic or not other.is_monotonic)):
12051205
result = Index.intersection(self, other)
1206-
result = self._simple_new(result._values, name=result.name, tz=result.tz)
1206+
result = self._simple_new(result._values, name=result.name,
1207+
tz=result.tz)
12071208
if result.freq is None:
12081209
result.offset = to_offset(result.inferred_freq)
12091210
return result

0 commit comments

Comments
 (0)