Skip to content
Snippets Groups Projects
Commit 74bccd84 authored by Saku Hakamaa's avatar Saku Hakamaa
Browse files

fix name

parent 4434a6ba
1 merge request!16Code fixes
Pipeline #6200 passed
This commit is part of merge request !16. Comments created here will be created in the context of that merge request.
...@@ -371,7 +371,7 @@ def read_conc_data(in_path, symbol_marker_color_dict, figure_range_dict): ...@@ -371,7 +371,7 @@ def read_conc_data(in_path, symbol_marker_color_dict, figure_range_dict):
if symbol not in dict_concs_mean.keys(): if symbol not in dict_concs_mean.keys():
dict_concs_mean[symbol] = [0] * len(z_positions) dict_concs_mean[symbol] = [0] * len(z_positions)
for z, concs in enumerate(concs_list): for z, concs in enumerate(concs_list):
indexes = sim_utilities.range_list_to_indexes(profile_mean_range, range(len(concs))) indexes = range_list_to_indexes(profile_mean_range, range(len(concs)))
array_mask = [True] * len(concs) array_mask = [True] * len(concs)
for i, _ in enumerate(concs): for i, _ in enumerate(concs):
if i in indexes: if i in indexes:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment