Skip to content

Commit

Permalink
fixing litin
Browse files Browse the repository at this point in the history
  • Loading branch information
luissian committed Aug 1, 2023
1 parent 6099f56 commit 33fcf9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wetlab/utils/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def check_run_already_defined_by_crontab(exp_name, pool_ids):
if len(sample_in_pools) != len(sample_in_s_sheet["samples"]):
return {"ERROR": wetlab.config.ERROR_EXISTING_RUN_WITH_DIF_SAMPLES_AS_IN_CRON}
for sample in sample_in_pools:
if not sample in sample_in_s_sheet["samples"]:
if sample not in sample_in_s_sheet["samples"]:
return {
"ERROR": wetlab.config.ERROR_EXISTING_RUN_WITH_DIF_SAMPLES_AS_IN_CRON
}
Expand Down

0 comments on commit 33fcf9d

Please # to comment.