diff --git a/pathways/pathways.py b/pathways/pathways.py index acc40f9..4a58f07 100644 --- a/pathways/pathways.py +++ b/pathways/pathways.py @@ -325,10 +325,7 @@ def process_region(data: Tuple) -> dict[str, ndarray[Any, dtype[Any]] | list[int results = np.array( [ - ( - characterization_matrix - @ lca.inventory - ).toarray() + (characterization_matrix @ lca.inventory).toarray() for _ in zip(range(use_distributions), lca) ] )