Skip to content

Commit 5ecef3b

Browse files
gallery example "Blockmean": Remove un-needed square brackets (#2724)
Remove un-needed square brackets
1 parent 5b4d5c3 commit 5ecef3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/gallery/histograms/blockm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
fig.coast(land="darkgray", transparency=40)
4040
# Plot original data points
4141
fig.plot(x=data.longitude, y=data.latitude, style="c0.3c", fill="white", pen="1p,black")
42-
fig.colorbar(frame=["x+lkm"])
42+
fig.colorbar(frame="x+lkm")
4343

4444
fig.shift_origin(xshift="w+5c")
4545

@@ -56,6 +56,6 @@
5656
)
5757
fig.coast(land="darkgray", transparency=40)
5858
fig.plot(x=data.longitude, y=data.latitude, style="c0.3c", fill="white", pen="1p,black")
59-
fig.colorbar(frame=["x+lcount"])
59+
fig.colorbar(frame="x+lcount")
6060

6161
fig.show()

0 commit comments

Comments
 (0)