Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bionetgen/atomizer/sbml2bngl.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def find_all_symbols(self, math, reactionID):
for key, val in replace_dict.items():
form = re.sub(rf"\b{re.escape(key)}\b", val, form)
# Let's also pool this in used_symbols
for sym in self.all_syms.keys():
for sym in self.all_syms:
if sym not in self.used_symbols:
self.used_symbols.append(sym)
# Sympy doesn't allow and/not/or to be used
Expand Down
Loading