Skip to content

Commit 80fb37d

Browse files
authored
Merge pull request matplotlib#26521 from EngineerKhan/EngineerKhan-patch-2
Replaced list with tuple in pyplot for axes
2 parents 9dfa263 + afce303 commit 80fb37d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@ def axes(
11531153
11541154
- *None*: A new full window Axes is added using
11551155
``subplot(**kwargs)``.
1156-
- 4-tuple of floats *rect* = ``[left, bottom, width, height]``.
1156+
- 4-tuple of floats *rect* = ``(left, bottom, width, height)``.
11571157
A new Axes is added with dimensions *rect* in normalized
11581158
(0, 1) units using `~.Figure.add_axes` on the current figure.
11591159

0 commit comments

Comments
 (0)