Skip to content

Commit

Permalink
Address review comments, couple of more asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
umesh-timalsina committed Apr 28, 2022
1 parent 3515a29 commit 04aa961
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions gmso/core/forcefield.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,8 @@ def non_element_types(self):
) # FixMe: Should we make this a first class citizen?
if element_symbol:
element = element_by_symbol(element_symbol)
non_element_types.add(None if element else element_symbol)
non_element_types.add(element_symbol) if not element else None

non_element_types.discard(None)
return non_element_types

@property
Expand Down
1 change: 1 addition & 0 deletions gmso/tests/test_forcefield.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,3 +569,4 @@ def test_non_element_types(self, non_element_ff, opls_ethane_foyer):
assert "_CH3" in non_element_ff.non_element_types
assert "_CH2" in non_element_ff.non_element_types
assert opls_ethane_foyer.non_element_types == set()
assert len(opls_ethane_foyer.atom_types) > 0

0 comments on commit 04aa961

Please sign in to comment.