I'm using pandastable to implement a pandas dataframe into my tkinter window however, an error:
'NoneType' object has no attribute 'bind_all'
Keeps coming up when I use this line:
table = pt = Table(window, dataframe=stats)
full code:
import tkinter as tk
import pandas as pd
from pandastable import Table, TableModel
places = {"Place":['1st'], "Name":['Derik'], "Time":['1.89']}
window = tk.Tk()
stats = pd.DataFrame.from_dict(places)
table = Table(window, dataframe=stats)