This issue is not reproducible. Moving forward, it is strongly recommended to use reports over usage.
import pandas as pd
import datetime as _dt
from arcgis.gis import GIS
gis = GIS(profile='your_online_profile')
me = gis.users.me
item = me.report('content', _dt.datetime.strptime("11/27/22", '%m/%d/%y'))
df = pd.read_csv(item.get_data())
# do stuff with dataframe....