Skip to content

Commit 629f3ec

Browse files
committed
🐴 code refactoring htmlr
1 parent 8613545 commit 629f3ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pyexcel_htmlr/htmlr.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ def open_stream(self, file_stream, **keywords):
114114
def read_all(self):
115115
result = OrderedDict()
116116
for sheet in self._native_book:
117-
sheet = HtmlTable(sheet, **self._keywords)
118-
result[sheet.name] = sheet.to_array()
117+
result.update(self.read_sheet(sheet))
119118
return result
120119

121120
def read_sheet(self, native_sheet):

0 commit comments

Comments
 (0)