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

Skip to content

Commit 06bfd9f

Browse files
committed
Fix deprecation warning
1 parent d9ae387 commit 06bfd9f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/streamplot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,9 @@ class StreamplotSet:
235235
def __init__(self, lines, arrows, **kwargs):
236236
if kwargs:
237237
cbook.warn_deprecated(
238-
"3.3", "Passing arbitrary keyword arguments to StreamplotSet "
239-
"is deprecated.")
238+
"3.3",
239+
message="Passing arbitrary keyword arguments to StreamplotSet "
240+
"is deprecated.")
240241
self.lines = lines
241242
self.arrows = arrows
242243

0 commit comments

Comments
 (0)