Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4be1b47

Browse files
Fix issue probably-meant-fstring found at https://codereview.doctor
1 parent e077394 commit 4be1b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tri/tripcolor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def tripcolor(ax, *args, alpha=1.0, norm=None, cmap=None, vmin=None,
8484
"facecolors via keyword")
8585
elif len(args) > 1:
8686
_api.warn_external(
87-
"Additional positional parameters {args[1:]!r} are ignored")
87+
f"Additional positional parameters {args[1:]!r} are ignored")
8888
C = np.asarray(args[0])
8989
if len(C) == len(tri.x):
9090
# having this before the len(tri.triangles) comparison gives

0 commit comments

Comments
 (0)