alexmojaki / birdseye

Graphical Python debugger which lets you easily view the values of all evaluated expressions

Home Page:https://birdseye.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NodeValue.expression fails on DataFrame objects

Lehnchen opened this issue · comments

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)

Fixed in 0.9.1

Thanks for the report!