reloading icon indicating copy to clipboard operation
reloading copied to clipboard

Function signature is not preserved

Open nneskildsf opened this issue 10 months ago • 0 comments

from reloading import reloading
from inspect import signature

@reloading
def A(a,b,c):
    pass

print(signature(A))

results in (*args, **kwargs), not (a, b, c).

nneskildsf avatar Dec 14 '24 08:12 nneskildsf