Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Nov 15, 2021
1 parent ccc27fb commit c8cce29
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/sbmlsim/_deprecated/pk/pkpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def get_species_keys(skey, species_ids):
# use regular expression to find ids
# This pattern is not very robust !!! FIXME (e.g. blood vs. plasma)
pattern = r"^[AC][a-z]+(_plasma)*\_{}$".format(skey)
# FIXME

match = re.search(pattern, species_id)
if match:
Expand Down
2 changes: 1 addition & 1 deletion src/sbmlsim/model/model_roadrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def set_integrator_settings(
# tolerances
value = min(value, value * min(r.model.getCompartmentVolumes()))
integrator.setValue(key, value)
logger.info(f"Integrator setting: '{key} = {value}'")
logger.debug(f"Integrator setting: '{key} = {value}'")
return integrator

@staticmethod
Expand Down
1 change: 1 addition & 0 deletions src/sbmlsim/plot/serialization_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import numpy as np
from matplotlib import pyplot as plt
from matplotlib.figure import Figure as FigureMPL
from matplotlib.axis import Axis as AxisMPL
from matplotlib.gridspec import GridSpec
from sbmlutils import log

Expand Down

0 comments on commit c8cce29

Please sign in to comment.