Skip to content

Commit b89307b

Browse files
committed
BUG : change set -> tuple for 2.6 compatibility
1 parent b5f6929 commit b89307b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/quiver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ class Quiver(mcollections.PolyCollection):
405405
in the draw() method.
406406
"""
407407

408-
_PIVOT_VALS = {'tail', 'tip', 'mid', 'middle'}
408+
_PIVOT_VALS = ('tail', 'mid', 'middle', 'tip')
409409

410410
@docstring.Substitution(_quiver_doc)
411411
def __init__(self, ax, *args, **kw):

0 commit comments

Comments
 (0)