File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 1414__pyexcel_io_plugins__ = [_FILE_TYPE ]
1515
1616
17- from pyexcel_io .io import get_data as read_data , isstream , store_data as write_data
17+ from pyexcel_io .io import isstream , store_data as write_data
1818
1919
2020def save_data (afile , data , file_type = None , ** keywords ):
2121 """standalone module function for writing module supported file type"""
2222 if isstream (afile ) and file_type is None :
2323 file_type = _FILE_TYPE
2424 write_data (afile , data , file_type = file_type , ** keywords )
25-
26-
27- def get_data (afile , file_type = None , ** keywords ):
28- """standalone module function for reading module supported file type"""
29- if isstream (afile ) and file_type is None :
30- file_type = _FILE_TYPE
31- return read_data (afile , file_type = file_type , ** keywords )
You can’t perform that action at this time.
0 commit comments