Skip to content

Commit dd583a1

Browse files
mingglijorisvandenbossche
authored andcommitted
remove backward slash
1 parent 5d51942 commit dd583a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/core/series.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1459,8 +1459,8 @@ def unique(self):
14591459
>>> pd.Series([pd.Timestamp('20160101') for _ in range(3)]).unique()
14601460
array(['2016-01-01T00:00:00.000000000'], dtype='datetime64[ns]')
14611461
1462-
>>> pd.Series([pd.Timestamp('20160101', tz='US/Eastern') \
1463-
for _ in range(3)]).unique()
1462+
>>> pd.Series([pd.Timestamp('20160101', tz='US/Eastern')
1463+
... for _ in range(3)]).unique()
14641464
array([Timestamp('2016-01-01 00:00:00-0500', tz='US/Eastern')],
14651465
dtype=object)
14661466
@@ -1473,8 +1473,8 @@ def unique(self):
14731473
14741474
An ordered Categorical preserves the category ordering.
14751475
1476-
>>> pd.Series(pd.Categorical(list('baabc'), categories=list('abc'), \
1477-
ordered=True)).unique()
1476+
>>> pd.Series(pd.Categorical(list('baabc'), categories=list('abc'),
1477+
... ordered=True)).unique()
14781478
[b, a, c]
14791479
Categories (3, object): [a < b < c]
14801480
"""

0 commit comments

Comments
 (0)