Update slic/utils/argfwd.py
Run CI Tests / test (push) Successful in 58s

This commit is contained in:
2025-08-03 13:37:32 +02:00
parent 61dcc618a2
commit 4670b694db
+2 -1
View File
@@ -29,7 +29,8 @@ def forwards_to(func_inner, nfilled=0, appended_kwargs=None):
def get_args(func):
spec = inspect.getfullargspec(func) #TODO replace by inspect.signature?
spec = inspect.signature(func)
#spec = inspect.getfullargspec(func) #TODO replace by inspect.signature?
all_args = spec.args
defaults = spec.defaults or []