File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -322,10 +322,10 @@ def _set_fillstyle(self, fillstyle):
322322 self ._recache ()
323323
324324 def get_joinstyle (self ):
325- return self ._joinstyle
325+ return self ._joinstyle . name
326326
327327 def get_capstyle (self ):
328- return self ._capstyle
328+ return self ._capstyle . name
329329
330330 def get_marker (self ):
331331 return self ._marker
Original file line number Diff line number Diff line change @@ -487,7 +487,7 @@ def set_capstyle(self, s):
487487
488488 def get_capstyle (self ):
489489 """Return the capstyle."""
490- return self ._capstyle
490+ return self ._capstyle . name
491491
492492 @docstring .interpd
493493 def set_joinstyle (self , s ):
@@ -507,7 +507,7 @@ def set_joinstyle(self, s):
507507
508508 def get_joinstyle (self ):
509509 """Return the joinstyle."""
510- return self ._joinstyle
510+ return self ._joinstyle . name
511511
512512 def set_hatch (self , hatch ):
513513 r"""
You can’t perform that action at this time.
0 commit comments