Df.info() not providing info?

Hello, as the title states, I’m trying to use df.info() but the terminal is only regurgitating my file path back out.

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import os

if __name__ == '__nane__':
    
    data_dir = './data'
    file_name = 'wowbgs.csv'
    path = os.path.join(data_dir, file_name)

    df = pd.read_csv(path)
    df.info()

Anyone have any ideas what’s going on? Below is an snippet of what the data looks like.

Presumably, __name__ is not equal to '__nane__'. Perhaps you meant '__main__'?

holy… moly… -.-

lmao thank you