Skip to content

Commit 58642a6

Browse files
committed
BUG: missing imports from clipboard 2
1 parent 044daae commit 58642a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/clipboard.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def read_clipboard(**kwargs): # pragma: no cover
1111
parsed : DataFrame
1212
"""
1313
from pandas.util.clipboard import clipboard_get
14-
from pandas.io.parsers import table
14+
from pandas.io.parsers import read_table
1515
text = clipboard_get()
1616
return read_table(StringIO(text), **kwargs)
1717

0 commit comments

Comments
 (0)