Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
FFroehlich committed Jan 31, 2025
1 parent 9be5b28 commit 32782a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/sdist/amici/sbml_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -2005,7 +2005,7 @@ def _process_observables(
name
for obs in observables.values()
for symbol in sp.sympify(obs["formula"]).free_symbols
if re.match(r"observableParameter\d+", (name := str(symbol)))
if re.match(r"observableParameter\d+$", (name := str(symbol)))
}
)
self.symbols[SymbolId.OBSERVABLE_PARAMETER] = {
Expand Down

0 comments on commit 32782a5

Please sign in to comment.