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
This can be worked around by using BytesIO(buffer.getvalue().encode('utf-8')) as the argument to Table, but it's inefficient to decode/encode large results sets.
The text was updated successfully, but these errors were encountered:
When using the results of tap query in 'csv' format to build an astropy Table instance, get a "TypeError: read() should return bytes" exception.
The following code will raise the exception:
This can be worked around by using BytesIO(buffer.getvalue().encode('utf-8')) as the argument to Table, but it's inefficient to decode/encode large results sets.
The text was updated successfully, but these errors were encountered: