python-visualization / branca

This library is a spinoff from folium, that would host the non-map-specific features.
https://python-visualization.github.io/branca/
MIT License
110 stars 63 forks source link

Remove `split_six` utility function #161

Closed Conengmo closed 3 months ago

Conengmo commented 3 months ago

This utility function is not used anywhere in Branca or Folium. It sort of requires Pandas, which is not actually a dependency of Branca. By removing this function, we can also remove that awkward import of Pandas.

I think we're pretty safe to remove it, since I don't expect it will have downstream users. If there are downstream users, they can easily adopt the code themselves, since it's just a few lines.

Conengmo commented 3 months ago

Thanks Martin for the review!