Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit d35e634

Browse files
authored
Merge pull request #6 from kolcz/master
Fix append multiple test fails
2 parents d982046 + c243ad9 commit d35e634

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plsxml/plsxml.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ def convert_type(data):
206206
d = tablesdict.pop(k)
207207

208208
if k in self:
209-
self[k].append(d, sort=False)
209+
temp_df = pd.DataFrame.from_dict(d)
210+
self[k] = pd.concat([self[k], temp_df], sort=False)
210211
_print('Dropping Duplicates:', k)
211212
self[k].drop_duplicates(inplace=True)
212213

0 commit comments

Comments
 (0)