File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1622,8 +1622,8 @@ def __unicode__(self):
1622
1622
1623
1623
def set_object_info (self ):
1624
1624
""" set my pandas type & version """
1625
- self .attrs .pandas_type = self .pandas_kind
1626
- self .attrs .pandas_version = _version
1625
+ self .attrs .pandas_type = str ( self .pandas_kind )
1626
+ self .attrs .pandas_version = str ( _version )
1627
1627
self .set_version ()
1628
1628
1629
1629
def copy (self ):
@@ -2377,7 +2377,7 @@ def set_info(self):
2377
2377
2378
2378
def set_attrs (self ):
2379
2379
""" set our table type & indexables """
2380
- self .attrs .table_type = self .table_type
2380
+ self .attrs .table_type = str ( self .table_type )
2381
2381
self .attrs .index_cols = self .index_cols ()
2382
2382
self .attrs .values_cols = self .values_cols ()
2383
2383
self .attrs .non_index_axes = self .non_index_axes
You can’t perform that action at this time.
0 commit comments