im trying to do tutorial at here:
https://developers.arcgis.com/python/sample-notebooks/land-cover-classification-using-unet/
when i get up to this line i get the error
m.add_layer(world_imagery_layer)
TypeError: 'NoneType' object is not iterable
however the other item can be added to my map (m) just fine
m.add_layer(label_layer)
ive tried:
https://community.esri.com/t5/arcgis-api-for-python-questions/nonetype-quot-error-when-adding-layer-to-webmap-using-python-api/m-p/764315
but apparently .Layer() isn't an attribute
AttributeError: 'GIS' object has no attribute 'Layer'
im not sure why one layer can be added but the other can't?