You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Otherwise, something like [None, None] causes an Error when written to Excel.
Correct Line 472 and possibly other ocurrencies (TODO: factor out the check for single cells).
# Simple Lists: Turn into list of lists
if isinstance(data, list) and (isinstance(data[0], (numbers.Number, string_types, time_types) or data[0] is None):
The text was updated successfully, but these errors were encountered:
fzumstein
changed the title
Check additionally for types.NoneType when turning simple lists into lists of list
Check additionally for None when turning simple lists into lists of list
May 21, 2014
fzumstein
changed the title
Check additionally for None when turning simple lists into lists of list
Check additionally for None when checking for single cells
Jun 14, 2014
Otherwise, something like
[None, None]
causes an Error when written to Excel.Correct Line 472 and possibly other ocurrencies (TODO: factor out the check for single cells).
The text was updated successfully, but these errors were encountered: