Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkent authored Aug 14, 2024
1 parent 05de9c2 commit bdcb42c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nimare/reports/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,12 +484,12 @@ def __init__(
)
elif meta_type == "IBMA":
# Use "z_maps", for Fishers, and Stouffers; otherwise use "beta_maps".
INPUT_TYPE_LABELS = {'z_maps': 'Z', 't_maps': 'T', 'beta_maps': 'Beta'}
for key_maps, x_label in INPUT_TYPE_LABELS.items():
if key_maps in self.results.estimator.inputs_:
break
else:
key_maps, x_label = 'beta_maps', 'Beta'
INPUT_TYPE_LABELS = {'z_maps': 'Z', 't_maps': 'T', 'beta_maps': 'Beta'}
for key_maps, x_label in INPUT_TYPE_LABELS.items():
if key_maps in self.results.estimator.inputs_:
break
else:
key_maps, x_label = 'beta_maps', 'Beta'

maps_arr = self.results.estimator.inputs_[key_maps]
ids_ = self.results.estimator.inputs_["id"]
Expand Down

0 comments on commit bdcb42c

Please sign in to comment.