Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve docs for make_with_signature #963

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/iminuit/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1035,15 +1035,15 @@ def make_with_signature(
Parameters
----------
callable:
Original callable whose signature shall be changed.
Original callable with positional arguments, whose names shall be changed.
*varnames: sequence of str
Replace the first N argument names with these.
**replacements: mapping of str to str, optional
Replace old argument name (key) with new argument name (value).

Returns
-------
callable with new argument names.
Callable with positional-only arguments.
"""
pars = describe(callable, annotations=True)
if pars:
Expand All @@ -1061,7 +1061,7 @@ class Caller:
def __init__(self, parameters):
self._parameters = parameters

def __call__(self, *args: object) -> object:
def __call__(self, *args: Any) -> Any:
return callable(*args)

return Caller(pars)
Expand Down