Skip to content

Commit f8e7073

Browse files
committed
docs
1 parent a7aa9f4 commit f8e7073

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

  • autofit/aggregator/summary/aggregate_csv

autofit/aggregator/summary/aggregate_csv/row.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,17 @@ def max_likelihood_kwargs(self):
6666
return kwargs
6767

6868
@cached_property
69-
def values_at_sigma_1_kwargs(self):
69+
def values_at_sigma_1_kwargs(self) -> dict:
70+
"""
71+
The values_at_sigma_1 arguments for the search from the samples_summary.
72+
"""
7073
return self._add_paths(self.result.samples_summary.values_at_sigma_1)
7174

7275
@cached_property
73-
def values_at_sigma_3_kwargs(self):
76+
def values_at_sigma_3_kwargs(self) -> dict:
77+
"""
78+
The values_at_sigma_3 arguments for the search from the samples_summary.
79+
"""
7480
return self._add_paths(self.result.samples_summary.values_at_sigma_3)
7581

7682
def dict(self) -> dict:

0 commit comments

Comments
 (0)