From 4d55d972be8027f94a170cc74e5b76ec1264dfe1 Mon Sep 17 00:00:00 2001 From: Diego Talledo <38036285+talledodiego@users.noreply.github.com> Date: Thu, 19 Mar 2026 13:55:41 +0100 Subject: [PATCH] bugfix: add return to chi_y property in IteractionDomainResult --- structuralcodes/core/_section_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structuralcodes/core/_section_results.py b/structuralcodes/core/_section_results.py index c5c111ea..9dfddee2 100644 --- a/structuralcodes/core/_section_results.py +++ b/structuralcodes/core/_section_results.py @@ -1217,7 +1217,7 @@ def eps_a(self): def chi_y(self): """Return chi_y (curvature about y-axis.""" if self.strains is not None: - self.strains[:, 1] + return self.strains[:, 1] raise ValueError('Strains are not available in this result object.') @property