Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtarzia committed Jan 23, 2024
1 parent cc7cb00 commit d404637
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bbprep/_internal/generators/geometry_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(
target_ranges: BondRange
| AngleRange
| TorsionRange
| tuple[BondRange, AngleRange, TorsionRange],
| tuple[BondRange | AngleRange | TorsionRange],
) -> None:
"""Initialise generator."""
if not isinstance(target_ranges, tuple):
Expand Down
4 changes: 2 additions & 2 deletions tests/torsion_test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
bbprep.generators.TorsionRange(
smarts="[#7][#6][#6][#7]",
expected_num_atoms=4,
torsion_ids=(0, 1, 2, 3),
torsion_range=range(0, 362, 40),
scanned_ids=(0, 1, 2, 3),
scanned_range=range(0, 362, 40),
),
),
),
Expand Down

0 comments on commit d404637

Please sign in to comment.