We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7aa9f4 commit f8e7073Copy full SHA for f8e7073
1 file changed
autofit/aggregator/summary/aggregate_csv/row.py
@@ -66,11 +66,17 @@ def max_likelihood_kwargs(self):
66
return kwargs
67
68
@cached_property
69
- def values_at_sigma_1_kwargs(self):
+ def values_at_sigma_1_kwargs(self) -> dict:
70
+ """
71
+ The values_at_sigma_1 arguments for the search from the samples_summary.
72
73
return self._add_paths(self.result.samples_summary.values_at_sigma_1)
74
75
- 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
80
return self._add_paths(self.result.samples_summary.values_at_sigma_3)
81
82
def dict(self) -> dict:
0 commit comments