minor bug fix

pull/7/head
Steve Nyemba 11 months ago
parent f1fa4b93e8
commit 56bdda17b7

@ -219,9 +219,10 @@ class SQLiteWriter(SQLite,DiskWriter) :
elif type(info) == pd.DataFrame :
info = info.fillna('')
info = info.to_dict(orient='records')
if not self.fields :
_rec = info[0]
self.init(list(_rec.keys()))
if not self.fields :
_rec = info[0]
self.init(list(_rec.keys()))
SQLiteWriter.LOCK.acquire()
try:

Loading…
Cancel
Save