Skip to content

Conversation

alugowski
Copy link
Contributor

This code:

import numpy as np
from tabulate import tabulate

data = [[np.ones(1)]]

print(tabulate(data))

Throws a FutureWarning or a ValueError due to the comparison with SEPARATING_LINE.

Fixes #287

This code:
```
import numpy as np
from tabulate import tabulate

data = [[np.ones(1)]]

print(tabulate(data))
```

Throws a `FutureWarning` or a `ValueError` due to the comparison with `SEPARATING_LINE`. 


Fixes astanin#287
@georkap
Copy link

georkap commented Jul 18, 2024

Can this PR be merged to master?

@astanin astanin merged commit b950d58 into astanin:master Jul 23, 2025
5 of 7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

FutureWarning if a table cell is a numpy array
4 participants