diff --git a/kymata/io/yaml.py b/kymata/io/yaml.py index 5dc3a84f..fa3ec0f8 100644 --- a/kymata/io/yaml.py +++ b/kymata/io/yaml.py @@ -3,7 +3,4 @@ def load_config_parameters(file_location: String): '''Load config parameters''' with open(file_location, "r") as stream: - try: - return yaml.safe_load(stream) - except yaml.YAMLError as exc: - print(exc) \ No newline at end of file + return yaml.safe_load(stream) \ No newline at end of file