Skip to content

Commit be718ba

Browse files
committed
🔨 minor update on the code lines, copy right year and extra useless lines
1 parent de2cd43 commit be718ba

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Diff for: pyexcel_xlsx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The lower level xlsx file format handler using openpyxl
66
7-
:copyright: (c) 2015-2017 by Onni Software Ltd & its contributors
7+
:copyright: (c) 2015-2019 by Onni Software Ltd & its contributors
88
:license: New BSD License
99
"""
1010
from pyexcel_io.io import get_data as read_data

Diff for: pyexcel_xlsx/xlsxr.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Read xlsx file format using openpyxl
66
7-
:copyright: (c) 2015-2017 by Onni Software Ltd & its contributors
7+
:copyright: (c) 2015-2019 by Onni Software Ltd & its contributors
88
:license: New BSD License
99
"""
1010
import openpyxl
@@ -186,7 +186,6 @@ def read_all(self):
186186

187187
def read_sheet(self, native_sheet):
188188
if self.skip_hidden_row_and_column or self.detect_merged_cells:
189-
190189
sheet = SlowSheet(native_sheet, **self._keywords)
191190
else:
192191
sheet = FastSheet(native_sheet, **self._keywords)

Diff for: pyexcel_xlsx/xlsxw.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Write xlsx file format using openpyxl
66
7-
:copyright: (c) 2015-2017 by Onni Software Ltd & its contributors
7+
:copyright: (c) 2015-2019 by Onni Software Ltd & its contributors
88
:license: New BSD License
99
"""
1010
import openpyxl

0 commit comments

Comments
 (0)