bug fix
This commit is contained in:
parent
838c7978de
commit
4aaefedce0
|
@ -411,7 +411,7 @@ class Generator (Learner):
|
||||||
_df[name] = _dates
|
_df[name] = _dates
|
||||||
_schema = self.get_schema()
|
_schema = self.get_schema()
|
||||||
_schema = [{'name':_item.name,'type':_item.field_type} for _item in _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
|
pass
|
||||||
class factory :
|
class factory :
|
||||||
_infocache = {}
|
_infocache = {}
|
||||||
|
|
Loading…
Reference in New Issue