Please just use the absolute file path to the file for loading the SBML and make sure the path exists.
I.e.
```
model_path = Path(".." / "models" / "salmonella" / "iYS1720.xml")
if not model_path.exists():
print(f"Path does not exist: {model_path}")
read_sbml_model(model_path)```