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

Skip to content

Commit 0d81f8b

Browse files
committed
added space after comma in widgets.CheckButtons.get_status()
1 parent 7a96a82 commit 0d81f8b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ def get_status(self):
607607
"""
608608
returns a tuple of the status (True/False) of all of the check buttons
609609
"""
610-
return [l1.get_visible() for (l1,l2) in self.lines]
610+
return [l1.get_visible() for (l1, l2) in self.lines]
611611

612612
def on_clicked(self, func):
613613
"""

0 commit comments

Comments
 (0)