Skip to content

Commit 90dbb94

Browse files
committed
fix: adding get_data for structural frame
1 parent 382eb74 commit 90dbb94

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

LoopStructural/modelling/features/_structural_frame.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,7 @@ def evaluate_gradient(self, evaluation_points, i=None):
158158
)
159159

160160
def get_data(self, value_map=None):
161-
return
161+
data = []
162+
for f in self.features:
163+
data.extend(f.get_data(value_map))
164+
return data

0 commit comments

Comments
 (0)