Skip to content

Commit 3b31f3a

Browse files
committed
formatting
1 parent 9908d72 commit 3b31f3a

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

Diff for: packages/python/plotly/plotly/basedatatypes.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -4858,9 +4858,7 @@ def __setitem__(self, prop, value):
48584858
self._set_compound_prop(prop, value)
48594859

48604860
# ### Handle compound array property ###
4861-
elif isinstance(
4862-
validator, (CompoundArrayValidator, BaseDataValidator)
4863-
):
4861+
elif isinstance(validator, (CompoundArrayValidator, BaseDataValidator)):
48644862
self._set_array_prop(prop, value)
48654863

48664864
# ### Handle simple property ###

Diff for: packages/python/plotly/plotly/express/_chart_types.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -1417,8 +1417,8 @@ def scatter_mapbox(
14171417
height=None,
14181418
) -> go.Figure:
14191419
"""
1420-
*scatter_mapbox* is deprecated! Use *scatter_map* instead.
1421-
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1420+
*scatter_mapbox* is deprecated! Use *scatter_map* instead.
1421+
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
14221422
In a Mapbox scatter plot, each row of `data_frame` is represented by a
14231423
symbol mark on a Mapbox map.
14241424
"""
@@ -1464,8 +1464,8 @@ def choropleth_mapbox(
14641464
height=None,
14651465
) -> go.Figure:
14661466
"""
1467-
*choropleth_mapbox* is deprecated! Use *choropleth_map* instead.
1468-
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1467+
*choropleth_mapbox* is deprecated! Use *choropleth_map* instead.
1468+
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
14691469
In a Mapbox choropleth map, each row of `data_frame` is represented by a
14701470
colored region on a Mapbox map.
14711471
"""
@@ -1509,8 +1509,8 @@ def density_mapbox(
15091509
height=None,
15101510
) -> go.Figure:
15111511
"""
1512-
*density_mapbox* is deprecated! Use *density_map* instead.
1513-
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1512+
*density_mapbox* is deprecated! Use *density_map* instead.
1513+
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
15141514
In a Mapbox density map, each row of `data_frame` contributes to the intensity of
15151515
the color of the region around the corresponding point on the map
15161516
"""
@@ -1556,7 +1556,7 @@ def line_mapbox(
15561556
) -> go.Figure:
15571557
"""
15581558
*line_mapbox* is deprecated! Use *line_map* instead.
1559-
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
1559+
Learn more at: https://plotly.com/python/mapbox-to-maplibre/
15601560
In a Mapbox line plot, each row of `data_frame` is represented as
15611561
a vertex of a polyline mark on a Mapbox map.
15621562
"""

0 commit comments

Comments
 (0)