From 88f70c2220098752d77dc4df4b414b20eafbffcd Mon Sep 17 00:00:00 2001 From: chfw Date: Tue, 24 May 2016 09:18:23 +0100 Subject: [PATCH] update code comment --- pyexcel_xls/__init__.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pyexcel_xls/__init__.py b/pyexcel_xls/__init__.py index ddbfa8c..8b1fc9f 100644 --- a/pyexcel_xls/__init__.py +++ b/pyexcel_xls/__init__.py @@ -2,30 +2,31 @@ pyexcel_xls ~~~~~~~~~~~~~~~~~~~ - The lower level xls/xlsm file format handler using xlrd/xlwt + The lower level xls/xlsx/xlsm file format handler using xlrd/xlwt :copyright: (c) 2015-2016 by Onni Software Ltd :license: New BSD License """ # this line has to be place above all else # because of dynamic import -__pyexcel_io_plugins__ = ['xls'] +_FILE_TYPE = 'xls' +__pyexcel_io_plugins__ = [_FILE_TYPE] from pyexcel_io.io import get_data as read_data, isstream, store_data as write_data def get_data(afile, file_type=None, **keywords): - """standalone module function for writing module supported file type""" + """standalone module function for reading module supported file type""" if isstream(afile) and file_type is None: - file_type = 'xls' + file_type = _FILE_TYPE return read_data(afile, file_type=file_type, **keywords) def save_data(afile, data, file_type=None, **keywords): - """standalone module function for reading module supported file type""" + """standalone module function for writing module supported file type""" if isstream(afile) and file_type is None: - file_type = 'xls' + file_type = _FILE_TYPE write_data(afile, data, file_type=file_type, **keywords)