MCPcopy Index your code
hub / github.com/plotly/plotly.py / is_skipped_key

Function is_skipped_key

_plotly_utils/utils.py:95–100  ·  view source on GitHub ↗

Return whether the key is skipped for conversion to the typed array spec

(key)

Source from the content-addressed store, hash-verified

93
94
95def is_skipped_key(key):
96 """
97 Return whether the key is skipped for conversion to the typed array spec
98 """
99 skipped_keys = ["geojson", "layer", "layers", "range"]
100 return any(skipped_key == key for skipped_key in skipped_keys)
101
102
103def convert_to_base64(obj):

Callers 1

convert_to_base64Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected