Skip to content

Commit

Permalink
try again to refmt with black
Browse files Browse the repository at this point in the history
  • Loading branch information
aryarm committed Jul 26, 2024
1 parent 4b84ac8 commit 6331382
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions happler/tree/tree_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,9 @@ def _find_split_flexible(
)
# step 7: check if this allele is significant and whether we should terminate the branch
self.log.debug(
"Testing variant {} / allele {} with parent_res {} and node_res {}"
.format(best_variant.id, allele, parent_res, node_res)
"Testing variant {} / allele {} with parent_res {} and node_res {}".format(
best_variant.id, allele, parent_res, node_res
)
)
if self.terminator.check(
parent_res, node_res, results, best_res_idx, num_samps, num_tests
Expand Down Expand Up @@ -487,8 +488,9 @@ def _find_split_rigid(
node_res = self.results_type.from_np(best_results)
# step 8: check whether we should terminate the branch
self.log.debug(
"Testing variant {} / allele {} with parent_res {} and node_res {}"
.format(best_variant.id, allele, parent_res, node_res)
"Testing variant {} / allele {} with parent_res {} and node_res {}".format(
best_variant.id, allele, parent_res, node_res
)
)
if self.terminator.check(
parent_res,
Expand Down

0 comments on commit 6331382

Please sign in to comment.