Skip to content
Snippets Groups Projects

F fix strict values in table columns

Merged Florian Spreckelsen requested to merge f-fix-strict-values-in-table-columns into dev
4 unresolved threads
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -342,7 +342,7 @@ class TableImporter():
if ((datatype == str)
or (np.issubdtype(col_dtype, np.integer)
and np.issubdtype(datatype, np.floating))
):
): # NOQA
df[key] = df[key].astype(datatype)
# Now check each element
Loading