Skip to content

Commit f4d79c6

Browse files
author
ShaharNaveh
committed
Make output on single line
1 parent 72cf543 commit f4d79c6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pandas/core/algorithms.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -398,9 +398,11 @@ def unique(values):
398398
... ]
399399
... )
400400
... )
401-
DatetimeIndex(['2016-01-01 00:00:00-05:00'],
402-
dtype='datetime64[ns, US/Eastern]',
403-
freq=None)
401+
DatetimeIndex(\
402+
['2016-01-01 00:00:00-05:00'], \
403+
dtype='datetime64[ns, US/Eastern]', \
404+
freq=None\
405+
)
404406
405407
>>> pd.unique(list("baabc"))
406408
array(['b', 'a', 'c'], dtype=object)

0 commit comments

Comments
 (0)