Skip to content

Commit 32d8084

Browse files
authored
Fixed the conversion from parameters to flow scenarios for production flows (#1235)
1 parent 0955df9 commit 32d8084

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

activity_browser/bwutils/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def reformat_indices(self) -> np.ndarray:
183183
https://presamples.readthedocs.io/en/latest/index.html"""
184184
result = np.zeros(len(self.indices), dtype=object)
185185
for i, idx in enumerate(self.indices):
186-
result[i] = (idx.input, idx.output, idx.input.database_type)
186+
result[i] = (idx.input, idx.output, idx.flow_type)
187187
return result
188188

189189
def arrays_from_scenarios(self, scenarios) -> (np.ndarray, np.ndarray):

0 commit comments

Comments
 (0)