File tree 3 files changed +3
-4
lines changed
3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
The lower level xlsx file format handler using openpyxl
6
6
7
- :copyright: (c) 2015-2017 by Onni Software Ltd & its contributors
7
+ :copyright: (c) 2015-2019 by Onni Software Ltd & its contributors
8
8
:license: New BSD License
9
9
"""
10
10
from pyexcel_io .io import get_data as read_data
Original file line number Diff line number Diff line change 4
4
5
5
Read xlsx file format using openpyxl
6
6
7
- :copyright: (c) 2015-2017 by Onni Software Ltd & its contributors
7
+ :copyright: (c) 2015-2019 by Onni Software Ltd & its contributors
8
8
:license: New BSD License
9
9
"""
10
10
import openpyxl
@@ -186,7 +186,6 @@ def read_all(self):
186
186
187
187
def read_sheet (self , native_sheet ):
188
188
if self .skip_hidden_row_and_column or self .detect_merged_cells :
189
-
190
189
sheet = SlowSheet (native_sheet , ** self ._keywords )
191
190
else :
192
191
sheet = FastSheet (native_sheet , ** self ._keywords )
Original file line number Diff line number Diff line change 4
4
5
5
Write xlsx file format using openpyxl
6
6
7
- :copyright: (c) 2015-2017 by Onni Software Ltd & its contributors
7
+ :copyright: (c) 2015-2019 by Onni Software Ltd & its contributors
8
8
:license: New BSD License
9
9
"""
10
10
import openpyxl
You can’t perform that action at this time.
0 commit comments