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

Skip to content

Commit e5940b7

Browse files
committed
MNT: remove unneeded contitional
1 parent 6bd87db commit e5940b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/qt_editor/figureoptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def figure_edit(axes, parent=None):
107107
has_curve = bool(curves)
108108

109109
datalist = [(general, "Axes", "")]
110-
if has_curve and curves:
110+
if has_curve:
111111
datalist.append((curves, "Curves", ""))
112112

113113
def apply_callback(data):

0 commit comments

Comments
 (0)