diff --git a/packages/seacas/scripts/exomerge3.py b/packages/seacas/scripts/exomerge3.py index bb321c6cc0..3fdd9e757e 100644 --- a/packages/seacas/scripts/exomerge3.py +++ b/packages/seacas/scripts/exomerge3.py @@ -574,7 +574,7 @@ def __getattr__(self, name): if name.startswith("__"): raise AttributeError # get non-special function names - names = [x for x in dir(self.__class__) if !x.startswith("__")] + names = [x for x in dir(self.__class__) if not x.startswith("__")] # if the name appears to be singular, search for the plural version if not name.endswith("s"): trial = name + "s"