CartoDB / carto-python

CARTO Python client
https://carto.com
BSD 3-Clause "New" or "Revised" License
154 stars 62 forks source link

Avoid NamedMap to explicitly require auth_client #117

Closed alrocar closed 5 years ago

alrocar commented 5 years ago

Example:

  named_map = NamedMapManager(auth_client).get(map_name)
  named_map.client = auth_client
  named_map.delete()

When it should just be:

NamedMapManager(auth_client).get(map_name).delete()
alrocar commented 5 years ago

Fixed via #118