minor bug fix

This commit is contained in:
Steve Nyemba 2023-11-30 12:40:57 -06:00
parent f1fa4b93e8
commit 56bdda17b7
1 changed files with 4 additions and 3 deletions

View File

@ -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: