We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4010260 commit c187794Copy full SHA for c187794
packages/python/plotly/codegen/datatypes.py
@@ -5,7 +5,7 @@
5
from codegen.utils import PlotlyNode, write_source_py
6
7
8
-Deprecated_mapbox_traces = [
+deprecated_mapbox_traces = [
9
"scattermapbox",
10
"choroplethmapbox",
11
"densitymapbox",
@@ -102,7 +102,7 @@ def build_datatype_py(node):
102
)
103
buffer.write(f"import copy as _copy\n")
104
105
- if node.name_property in Deprecated_mapbox_traces:
+ if node.name_property in deprecated_mapbox_traces:
106
buffer.write(f"from warnings import warn\n")
107
108
# Write class definition
@@ -410,7 +410,7 @@ def __init__(self"""
410
"""
411
412
413
414
buffer.write(
415
f"""
416
warn(
0 commit comments