File tree 1 file changed +8
-8
lines changed 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -2335,13 +2335,13 @@ def on_calculate_button_click(b):
2335
2335
}
2336
2336
)
2337
2337
current_concentration = concentration .evalf ()
2338
- print (f"adding { current_concentration } to { standard .name } ." )
2338
+ # print(f"adding {current_concentration} to {standard.name}.")
2339
2339
self .fid_array .concentrations [standard .name ].append (
2340
2340
current_concentration
2341
2341
)
2342
- print (
2343
- f"`self.fid_array.concentrations` is { self .fid_array .concentrations } ."
2344
- )
2342
+ # print(
2343
+ # f"`self.fid_array.concentrations` is {self.fid_array.concentrations}."
2344
+ # )
2345
2345
2346
2346
# Iterate over all identities but the standard
2347
2347
for identity in fid .fid_object .peak_identities :
@@ -2358,13 +2358,13 @@ def on_calculate_button_click(b):
2358
2358
}
2359
2359
)
2360
2360
current_concentration = concentration .evalf ()
2361
- print (f"adding { current_concentration } to { identity .name } ." )
2361
+ # print(f"adding {current_concentration} to {identity.name}.")
2362
2362
self .fid_array .concentrations [identity .name ].append (
2363
2363
current_concentration
2364
2364
)
2365
- print (
2366
- f"`self.fid_array.concentrations` is { self .fid_array .concentrations } ."
2367
- )
2365
+ # print(
2366
+ # f"`self.fid_array.concentrations` is {self.fid_array.concentrations}."
2367
+ # )
2368
2368
2369
2369
print (f"Done! Get concentrations with `FidArray.concentrations`." )
2370
2370
You can’t perform that action at this time.
0 commit comments