Update interpretability.py
Browse files- interpretability.py +1 -5
interpretability.py
CHANGED
@@ -64,8 +64,4 @@ def save_high_quality_png(smiles, title, bw=True, padding=0.05):
|
|
64 |
with open(f"{title}.png", "wb") as png_file:
|
65 |
png_file.write(d.GetDrawingText())
|
66 |
|
67 |
-
|
68 |
-
d.FinishDrawing()
|
69 |
-
png_data = d.GetDrawingText()
|
70 |
-
img = Image(data=png_data)
|
71 |
-
return img
|
|
|
64 |
with open(f"{title}.png", "wb") as png_file:
|
65 |
png_file.write(d.GetDrawingText())
|
66 |
|
67 |
+
return None
|
|
|
|
|
|
|
|