Skip to content

Commit

Permalink
add debug statement in planet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sgathrid committed Jul 4, 2024
1 parent 4c24af4 commit 753961a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion thema/multiverse/system/inner/planet.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,9 @@ def __init__(
self.verbose = verbose
self.YAML_PATH = None
if YAML_PATH is not None:
assert os.path.isfile(YAML_PATH), "params.yaml file not found!"
assert os.path.isfile(
YAML_PATH
), f"yaml parameter file could not be found: {YAML_PATH}"

self.YAML_PATH = YAML_PATH
with open(YAML_PATH, "r") as f:
Expand Down

0 comments on commit 753961a

Please sign in to comment.