Skip to content

Commit c82aad7

Browse files
authored
Update packages/python/plotly/plotly/basedatatypes.py
1 parent c795b3b commit c82aad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/basedatatypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3863,7 +3863,7 @@ def _perform_update(plotly_obj, update_obj, overwrite=False):
38633863
# >>> layout.update(xaxis2={'title': 'xaxis 2'})
38643864
for key in update_obj:
38653865
# special handling for missing keys that match _subplot_re_match
3866-
if not key in plotly_obj and isinstance(plotly_obj, BaseLayoutType):
3866+
if key not in plotly_obj and isinstance(plotly_obj, BaseLayoutType):
38673867
# try _subplot_re_match
38683868
match = plotly_obj._subplot_re_match(key)
38693869
if match:

0 commit comments

Comments
 (0)