Skip to content

Commit

Permalink
Fixed inappropriate logical expression (#1012)
Browse files Browse the repository at this point in the history
Signed-off-by: fazledyn-or <ataf@openrefactory.com>
  • Loading branch information
fazledyn-or authored Dec 19, 2023
1 parent 2525ba3 commit bc37e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tedana/workflows/ica_reclassify.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def ica_reclassify_workflow(
gscontrol.append("gsr")
if mir:
gscontrol.append("mir")
gscontrol = None if gscontrol is [] else gscontrol
gscontrol = None if gscontrol == [] else gscontrol

reporting.static_figures.carpet_plot(
optcom_ts=data_oc,
Expand Down

0 comments on commit bc37e6a

Please sign in to comment.