Skip to content

Commit

Permalink
fixed unit test calling Complex constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Jul 20, 2022
1 parent caabd55 commit 9387ad3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuad/constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -6920,8 +6920,8 @@ def _get_base_pair_domain_endpoints_to_check(
addr_translation_table: Dict[StrandDomainAddress, List[StrandDomainAddress]] = {}

# Need to convert strands into strands lowest level subdomains
leafify_strand_complex = Complex(tuple(
[_leafify_strand(strand, addr_translation_table) for strand in strand_complex]))
leafify_strand_complex = Complex(
*[_leafify_strand(strand, addr_translation_table) for strand in strand_complex])

new_nonimplicit_base_pairs = []
if nonimplicit_base_pairs:
Expand Down

0 comments on commit 9387ad3

Please sign in to comment.