From b71dd320eced9fa66f20f5eaf81ea354199eef4b Mon Sep 17 00:00:00 2001 From: Zhan Ling Date: Wed, 10 Apr 2024 15:09:28 +0800 Subject: [PATCH] Fix whitespace issues --- hcga/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hcga/utils.py b/hcga/utils.py index d2efb540..7c0b725c 100644 --- a/hcga/utils.py +++ b/hcga/utils.py @@ -38,12 +38,12 @@ class NestedPool(multiprocessing.pool.Pool): # pylint: disable=abstract-method def timeout_eval(func, args, timeout=None, pool=None): """Evaluate a function within a given timeout period. - + Args: func: The function to call. args: Arguments to pass to the function. timeout: The timeout period in seconds. - + Returns: The function's result, or None if a timeout or an error occurs. """