Skip to content

Commit f481af7

Browse files
committed
update skipped keys to include layers
1 parent 60c73a8 commit f481af7

File tree

1 file changed

+1
-1
lines changed
  • packages/python/plotly/_plotly_utils

1 file changed

+1
-1
lines changed

Diff for: packages/python/plotly/_plotly_utils/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def is_skipped_key(key):
9494
"""
9595
Return whether the key is skipped for conversion to the typed array spec
9696
"""
97-
skipped_keys = ["geojson", "layer", "range"]
97+
skipped_keys = ["geojson", "layer", "layers", "range"]
9898
return any(skipped_key == key for skipped_key in skipped_keys)
9999

100100

0 commit comments

Comments
 (0)