Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
KRiedmiller committed Oct 27, 2023
1 parent eb12799 commit 7b5654b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/kimmdy/runmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def _place_reaction_tasks(self, selected: Optional[str] = None) -> None:
if len(set(strategies)) > 1:
raise RuntimeError(
"Incompatible kmc algorithms chosen in the same reaction.\n"
"Split the reactions in separate steps or chose different algorithms\n"
"Split the reactions in separate steps or choose different algorithms\n"
"Attempted to combine:\n"
f"{ {rp.name:rp.config.kmc for rp in self.reaction_plugins} }"
)
Expand Down Expand Up @@ -475,7 +475,8 @@ def _decide_recipe(
logger = files.logger
self.recipe_collection.aggregate_reactions()
logger.info(
f"Start Decide recipe, {len(self.recipe_collection.recipes)} available"
f"Start Decide recipe using {self.kmc_algorithm}, "
f"{len(self.recipe_collection.recipes)} recipes available."
)
kmc = self.kmc_mapping[self.kmc_algorithm.lower()]
if "extrande" in self.kmc_algorithm.lower():
Expand Down

0 comments on commit 7b5654b

Please sign in to comment.