Skip to content

Commit

Permalink
Add missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
t-young31 committed Nov 15, 2022
1 parent 7d74791 commit 74e4310
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions autode/opt/optimisers/crfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,7 @@ def _build_internal_coordinates(self):
"Had an incomplete set of primitives. Adding "
"additional distances"
)
for i, j in itertools.combinations(
range(self._species.n_atoms), 2
):
for i, j in combinations(range(self._species.n_atoms), 2):
primitives.append(Distance(i, j))

self._coords = DICWithConstraints.from_cartesian(
Expand Down

0 comments on commit 74e4310

Please sign in to comment.