Skip to content

Commit 2d039ff

Browse files
committed
update function names
1 parent 375d179 commit 2d039ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyexcel_xlsx/xlsx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ def name(self):
4343
"""sheet name"""
4444
return self._native_sheet.title
4545

46-
def _iterate_rows(self):
46+
def row_iterator(self):
4747
"""
4848
Number of rows in the xls sheet
4949
"""
5050
return self._native_sheet.rows
5151

52-
def _iterate_columns(self, row):
52+
def column_iterator(self, row):
5353
"""
5454
Number of columns in the xls sheet
5555
"""

0 commit comments

Comments
 (0)