Skip to content

Commit 865aac0

Browse files
committed
Fix unnecessary ref=ref in subplots example
1 parent 48733be commit 865aac0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

docs/subplots.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,7 @@
172172
import proplot as plot
173173

174174
# Automatic spacing for all margins and between all columns and rows
175-
fig, axs = plot.subplots(
176-
ref=ref, nrows=3, ncols=3, axwidth=1.1, share=0
177-
)
175+
fig, axs = plot.subplots(nrows=3, ncols=3, axwidth=1.1, share=0)
178176

179177
# Formatting that stress-tests the algorithm
180178
axs[4].format(

0 commit comments

Comments
 (0)