(*args, **kwargs)
| 533 | |
| 534 | |
| 535 | def create_hexbin_mapbox(*args, **kwargs): |
| 536 | warnings.warn( |
| 537 | "create_hexbin_mapbox() is deprecated and will be removed in the next major version. " |
| 538 | + "Please use create_hexbin_map() instead. " |
| 539 | + "Learn more at: https://plotly.com/python/mapbox-to-maplibre/", |
| 540 | stacklevel=2, |
| 541 | category=DeprecationWarning, |
| 542 | ) |
| 543 | if "mapbox_style" in kwargs: |
| 544 | kwargs["map_style"] = kwargs.pop("mapbox_style") |
| 545 | |
| 546 | return create_hexbin_map(*args, **kwargs) |
nothing calls this directly
no test coverage detected