Skip to content

Commit 1e9ee2f

Browse files
author
mahdis-z
committed
fixing the bug of update_ methods
1 parent 4a7465c commit 1e9ee2f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/python/plotly/plotly/graph_objs/_figure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17450,7 +17450,7 @@ def for_each_annotation(
1745017450
return self
1745117451

1745217452
def update_annotations(
17453-
self, patch, selector=None, row=None, col=None, secondary_y=None, **kwargs
17453+
self, patch=None, selector=None, row=None, col=None, secondary_y=None, **kwargs
1745417454
):
1745517455
"""
1745617456
Perform a property update operation on all annotations that satisfy the
@@ -17949,7 +17949,7 @@ def for_each_layout_image(
1794917949
return self
1795017950

1795117951
def update_layout_images(
17952-
self, patch, selector=None, row=None, col=None, secondary_y=None, **kwargs
17952+
self, patch=None, selector=None, row=None, col=None, secondary_y=None, **kwargs
1795317953
):
1795417954
"""
1795517955
Perform a property update operation on all images that satisfy the
@@ -18221,7 +18221,7 @@ def for_each_shape(self, fn, selector=None, row=None, col=None, secondary_y=None
1822118221
return self
1822218222

1822318223
def update_shapes(
18224-
self, patch, selector=None, row=None, col=None, secondary_y=None, **kwargs
18224+
self, patch=None, selector=None, row=None, col=None, secondary_y=None, **kwargs
1822518225
):
1822618226
"""
1822718227
Perform a property update operation on all shapes that satisfy the

packages/python/plotly/plotly/graph_objs/_figurewidget.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17450,7 +17450,7 @@ def for_each_annotation(
1745017450
return self
1745117451

1745217452
def update_annotations(
17453-
self, patch, selector=None, row=None, col=None, secondary_y=None, **kwargs
17453+
self, patch=None, selector=None, row=None, col=None, secondary_y=None, **kwargs
1745417454
):
1745517455
"""
1745617456
Perform a property update operation on all annotations that satisfy the
@@ -17949,7 +17949,7 @@ def for_each_layout_image(
1794917949
return self
1795017950

1795117951
def update_layout_images(
17952-
self, patch, selector=None, row=None, col=None, secondary_y=None, **kwargs
17952+
self, patch=None, selector=None, row=None, col=None, secondary_y=None, **kwargs
1795317953
):
1795417954
"""
1795517955
Perform a property update operation on all images that satisfy the
@@ -18221,7 +18221,7 @@ def for_each_shape(self, fn, selector=None, row=None, col=None, secondary_y=None
1822118221
return self
1822218222

1822318223
def update_shapes(
18224-
self, patch, selector=None, row=None, col=None, secondary_y=None, **kwargs
18224+
self, patch=None, selector=None, row=None, col=None, secondary_y=None, **kwargs
1822518225
):
1822618226
"""
1822718227
Perform a property update operation on all shapes that satisfy the

0 commit comments

Comments
 (0)