Skip to content

Commit 35f64de

Browse files
committed
don't exit if Matplotlib is missing, because Matplotlib should be an optional import
1 parent 33b82d8 commit 35f64de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/harmony/matching/visualize_questions_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
except ImportError as e:
2222
print("Make sure matplotlib, tkinter and networkx are installed.")
2323
print(e.msg)
24-
sys.exit(1)
24+
# sys.exit(1)
2525

2626

2727
def draw_cosine_similarity_matrix(questions: List[str], ax: Axes, canvas: FigureCanvasTkAgg):

0 commit comments

Comments
 (0)