diff --git a/python/helpers/python-skeletons/multiprocessing/__init__.py b/python/helpers/python-skeletons/multiprocessing/__init__.py index de9d1ddfa3ca..85329565ed39 100644 --- a/python/helpers/python-skeletons/multiprocessing/__init__.py +++ b/python/helpers/python-skeletons/multiprocessing/__init__.py @@ -136,7 +136,7 @@ class JoinableQueue(multiprocessing.Queue): pass -def active_childern(): +def active_children(): """ :rtype: list[multiprocessing.Process] """ diff --git a/python/helpers/python-skeletons/pytest/__init__.py b/python/helpers/python-skeletons/pytest/__init__.py index dec4ffc01121..ae4549f95e10 100644 --- a/python/helpers/python-skeletons/pytest/__init__.py +++ b/python/helpers/python-skeletons/pytest/__init__.py @@ -64,6 +64,12 @@ class collect: # _pytest.mark class mark: + def __getattr__(self, item): + """ + This class may have any attribute, so this method should exist + """ + pass + @staticmethod def skipif(condition, reason=None): """skip the given test function if eval(condition) results in a True