From e5bbe2a0d468adadbb297e12c9f9c49a98282449 Mon Sep 17 00:00:00 2001 From: Pierre-antoine Comby Date: Fri, 16 Feb 2024 17:56:46 +0100 Subject: [PATCH] cleanup --- modopt/base/types.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modopt/base/types.py b/modopt/base/types.py index e9212e12..61b9063a 100644 --- a/modopt/base/types.py +++ b/modopt/base/types.py @@ -12,7 +12,7 @@ from modopt.interface.errors import warn -def check_callable(input_obj, add_agrs=True): +def check_callable(input_obj): """Check input object is callable. This method checks if the input operator is a callable funciton and @@ -23,8 +23,6 @@ def check_callable(input_obj, add_agrs=True): ---------- input_obj : callable Callable function - add_agrs : bool, optional - Option to add support for agrs and kwargs (default is ``True``) Returns -------