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 @@ -484,7 +484,7 @@ def set_capstyle(self, s):
484484
485485 def get_capstyle (self ):
486486 """Return the capstyle."""
487- return self ._capstyle
487+ return self ._capstyle . name
488488
489489 @docstring .interpd
490490 def set_joinstyle (self , s ):
@@ -501,7 +501,7 @@ def set_joinstyle(self, s):
501501
502502 def get_joinstyle (self ):
503503 """Return the joinstyle."""
504- return self ._joinstyle
504+ return self ._joinstyle . name
505505
506506 def set_hatch (self , hatch ):
507507 r"""
You can’t perform that action at this time.
0 commit comments