I'm trying to overwrite a hosted feature layer in AGOL using the method outlined here:
https://developers.arcgis.com/python/sample-notebooks/overwriting-feature-layers/
but when I run
data_flayer.manager.overwrite('data.csv')
I get
AttributeError: 'PropertyMap' instance has no attribute 'tables'
I get the same error when I try to update just the csv item that the feature layer is published from:
data_item.update({}, 'data.csv')
data.publish(overwrite=True)I get the same error when I attempt to overwrite two different ways- thoughts?