Skip to content

Commit 16ef452

Browse files
committed
Profile
1 parent 9a10000 commit 16ef452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@ def profiler(func):
13971397
#### Decorator for function tracing:
13981398
```python
13991399
def tracer(func):
1400-
"""Prints input and output of a decorated function."""
1400+
"""Prints arguments and output of a decorated function."""
14011401
def out(*args, **kwargs):
14021402
result = func(*args, **kwargs)
14031403
arg_list = [str(x) for x in args]

0 commit comments

Comments
 (0)