We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd9c6ce + bf9c347 commit 0445e3fCopy full SHA for 0445e3f
spectrafit/report.py
@@ -696,9 +696,10 @@ def generate_report(self) -> Dict[str, pd.DataFrame]:
696
report (Dict[str, pd.DataFrame]): A dictionary containing
697
the generated report.
698
"""
699
- report = {}
700
- report["Fit Statistics"] = self.generate_fit_statistics()
701
- report["Variables and Values"] = self.generate_variables()
+ report = {
+ "Fit Statistics": self.generate_fit_statistics(),
+ "Variables and Values": self.generate_variables(),
702
+ }
703
if self.show_correl:
704
report["Correlations of Components"] = self.generate_correlations()
705
return report
0 commit comments