Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bluecellulab/circuit/config/sonata_simulation_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def get_report_entries(self) -> dict[str, dict]:

Each key is a report name, and the value is its configuration.
"""
reports = self.impl.config.get("reports", {})
reports = self.impl.config.get("reports") or {}
if not isinstance(reports, dict):
raise ValueError("Invalid format for 'reports' in SONATA config.")
return reports
Expand Down