Skip to content

Commit

Permalink
add missing kwarg to fragment update method
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns committed Feb 2, 2024
1 parent 0d99e0c commit a4dd924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/molecule/fragment.py
Expand Up @@ -391,7 +391,7 @@ def is_radical(self):
return True
return False

def update(self, log_species=True, sort_atoms=True):
def update(self, log_species=False, sort_atoms=False, raise_atomtype_exception=False):
# currently sort_atoms does not work for fragments
for v in self.vertices:
if not isinstance(v, CuttingLabel):
Expand Down

0 comments on commit a4dd924

Please sign in to comment.