trying to read csv into polars dataframe but getting the following error 'PyDataFrame' is not defined. I installed polars latest version for python 3.8
#basic script to read from csv
import polars as pl
data = pl.read_csv("myfile.csv")
print(type(data))
looks like it's an internal package error? anyone got any solutions or can quickly replicate what i have done to confirm it is a package error