Commit 6ef18f4f authored by Raymond Hettinger's avatar Raymond Hettinger

Fix typo.

parent 971f4832
......@@ -30,7 +30,7 @@ def recursive_repr(fillvalue='...'):
wrapper.__module__ = getattr(user_function, '__module__')
wrapper.__doc__ = getattr(user_function, '__doc__')
wrapper.__name__ = getattr(user_function, '__name__')
wrapper.__name__ = getattr(user_function, '__annotations__', {})
wrapper.__annotations__ = getattr(user_function, '__annotations__', {})
return wrapper
return decorating_function
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment