Skip to content

Commit a4dd924

Browse files
committed
add missing kwarg to fragment update method
1 parent 0d99e0c commit a4dd924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rmgpy/molecule/fragment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def is_radical(self):
391391
return True
392392
return False
393393

394-
def update(self, log_species=True, sort_atoms=True):
394+
def update(self, log_species=False, sort_atoms=False, raise_atomtype_exception=False):
395395
# currently sort_atoms does not work for fragments
396396
for v in self.vertices:
397397
if not isinstance(v, CuttingLabel):

0 commit comments

Comments
 (0)