This commit is contained in:
Steve Nyemba 2022-04-12 14:35:58 -05:00
parent 838c7978de
commit 4aaefedce0
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ class Generator (Learner):
_df[name] = _dates
_schema = self.get_schema()
_schema = [{'name':_item.name,'type':_item.field_type} for _item in _schema]
writer.write(_df[['birth_datetime']+self.columns],schema=_schema)
writer.write(_df[self.columns],schema=_schema)
pass
class factory :
_infocache = {}