Skip to content

Commit 8f11ab1

Browse files
committed
Merge branch 'main' into update_model_implementation
2 parents fdd4205 + b2238a2 commit 8f11ab1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3939
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
4040
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
41-
- name: Test with script
41+
- name: Test
4242
run: |
43-
python test_script.py
43+
# python test_script.py
44+
pytest

mobspy/modules/function_rate_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def search_for_parameters_in_str(reaction_rate_string, parameters_exist, paramet
252252
:param parameters_in_reaction: set of parameters already in reaction
253253
:return: parameters_in_reaction set of parameters already in reaction
254254
"""
255-
split_operation = re_split(', |-|!|\*|\+|/|\)|\(| ', reaction_rate_string)
255+
split_operation = re_split(r', |-|!|\*|\+|/|\)|\(| ', reaction_rate_string)
256256
split_operation = [x.replace(' ', '') for x in split_operation if x.replace(' ', '') != '']
257257

258258
for name in split_operation:

0 commit comments

Comments
 (0)