Update app.py
Browse files
app.py
CHANGED
|
@@ -110,6 +110,7 @@ def substitution_node(state: State) -> State:
|
|
| 110 |
new_smiles_string += "No valid substitutions were found.\n"
|
| 111 |
|
| 112 |
print(new_smiles_string)
|
|
|
|
| 113 |
current_props_string += new_smiles_string
|
| 114 |
state["props_string"] = current_props_string
|
| 115 |
state["which_tool"] += 1
|
|
|
|
| 110 |
new_smiles_string += "No valid substitutions were found.\n"
|
| 111 |
|
| 112 |
print(new_smiles_string)
|
| 113 |
+
new_smiles_string = new_smiles_string.replace('#', '~')
|
| 114 |
current_props_string += new_smiles_string
|
| 115 |
state["props_string"] = current_props_string
|
| 116 |
state["which_tool"] += 1
|