We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aee92d commit f17cccaCopy full SHA for f17ccca
src/ansys/dpf/core/helpers/utils.py
@@ -34,7 +34,7 @@ def _sort_supported_kwargs(bound_method, **kwargs):
34
35
warnings.simplefilter("ignore")
36
# Get supported arguments
37
- supported_args = inspect.getfullargspec(bound_method).args
+ supported_args = inspect.signature(bound_method).parameters.keys()
38
kwargs_in = {}
39
kwargs_not_avail = {}
40
# Filter the given arguments
0 commit comments