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

Skip to content

Commit 3f20d3a

Browse files
committed
Put get_zdata on the correct class
1 parent 641304c commit 3f20d3a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

lib/matplotlib/artist.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -903,6 +903,12 @@ def matchfunc(x):
903903
artists.append(self)
904904
return artists
905905

906+
def get_zdata(self, event):
907+
"""
908+
Get the zdata for a given event, as a string message
909+
"""
910+
return ''
911+
906912

907913
class ArtistInspector(object):
908914
"""
@@ -1020,12 +1026,6 @@ def get_setters(self):
10201026

10211027
return [prop for prop, target in self._get_setters_and_targets()]
10221028

1023-
def get_zdata(self, event):
1024-
"""
1025-
Get the zdata for a given event, as a string message
1026-
"""
1027-
return ''
1028-
10291029
def is_alias(self, o):
10301030
"""
10311031
Return *True* if method object *o* is an alias for another

0 commit comments

Comments
 (0)