Skip to content

Commit

Permalink
fix order of connection_identifier (#802)
Browse files Browse the repository at this point in the history
  • Loading branch information
daico007 authored Feb 3, 2024
1 parent 40b0277 commit 68e7264
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gmso/parameterization/topology_parameterizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,11 @@ def connection_identifier(
group = POTENTIAL_GROUPS[type(connection)]
return group, [
list(
member.atom_type.atomclass
member.atom_type.name
for member in connection.connection_members
),
list(
member.atom_type.name
member.atom_type.atomclass
for member in connection.connection_members
),
]
Expand Down

0 comments on commit 68e7264

Please sign in to comment.