Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkent committed Aug 14, 2024
1 parent bdcb42c commit db8e0fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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'}
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'
key_maps, x_label = "beta_maps", "Beta"

Check warning on line 492 in nimare/reports/base.py

View check run for this annotation

Codecov / codecov/patch

nimare/reports/base.py#L492

Added line #L492 was not covered by tests

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

0 comments on commit db8e0fe

Please sign in to comment.