Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Oddant1 authored and gregcaporaso committed Nov 4, 2024
1 parent aba84b8 commit 5129e25
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions q2_boots/_beta.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,13 @@ def _get_beta_metric_action(
variance_adjusted=_METRIC_MOD_DEFAULTS['variance_adjusted']):
if _is_phylogenetic_beta_metric(metric):
beta_metric_action = ctx.get_action("diversity", "beta_phylogenetic")
beta_metric_action = functools.partial(beta_metric_action,
phylogeny=phylogeny,
metric=metric,
bypass_tips=bypass_tips,
alpha=alpha,
variance_adjusted=variance_adjusted)
beta_metric_action = functools.partial(
beta_metric_action,
phylogeny=phylogeny,
metric=metric,
bypass_tips=bypass_tips,
alpha=alpha,
variance_adjusted=variance_adjusted)
else:
beta_metric_action = ctx.get_action("diversity", "beta")
beta_metric_action = functools.partial(beta_metric_action,
Expand Down

0 comments on commit 5129e25

Please sign in to comment.