Skip to content

Commit 268d7f9

Browse files
author
Albert Villanova del Moral
committed
Fix error: line too long
1 parent cc7a7f2 commit 268d7f9

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
@@ -1202,7 +1202,8 @@ def intersection(self, other):
12021202
not other.offset.isAnchored() or
12031203
(not self.is_monotonic or not other.is_monotonic)):
12041204
result = Index.intersection(self, other)
1205-
result = self._simple_new(result._values, name=result.name, tz=result.tz)
1205+
result = self._simple_new(result._values, name=result.name,
1206+
tz=result.tz)
12061207
if result.freq is None:
12071208
result.offset = to_offset(result.inferred_freq)
12081209
return result

0 commit comments

Comments
 (0)