alexmojaki / birdseye

Graphical Python debugger which lets you easily view the values of all evaluated expressions
https://birdseye.readthedocs.io
MIT License
1.65k stars 72 forks source link

NodeValue.expression fails on DataFrame objects #92

Closed Lehnchen closed 3 years ago

Lehnchen commented 3 years ago
for i, (formatted_name, label) in enumerate(zip(val.columns.format(),
                                                            val.columns)):

produces an error if used with DataFrames:


[...]bird.py", line 1045, in expression
    for i, (formatted_name, label) in enumerate(zip(val.columns.format(sparsify=False),
TypeError: format() got an unexpected keyword argument 'sparsify'

(birdeye=0.9.0, pandas: 1.2.4)

alexmojaki commented 3 years ago

Fixed in 0.9.1

alexmojaki commented 3 years ago

Thanks for the report!