mirror of https://github.com/Delgan/loguru.git
16 lines
670 B
Plaintext
16 lines
670 B
Plaintext
|
|
Traceback (most recent call last):
|
|
> File "tests/exceptions/source/backtrace/not_enough_arguments.py", line 18, in <module>
|
|
decorated(1)
|
|
TypeError: decorated() missing 2 required positional arguments: 'y' and 'z'
|
|
|
|
Traceback (most recent call last):
|
|
> File "tests/exceptions/source/backtrace/not_enough_arguments.py", line 21, in <module>
|
|
not_decorated(2)
|
|
TypeError: not_decorated() missing 2 required positional arguments: 'y' and 'z'
|
|
|
|
Traceback (most recent call last):
|
|
> File "tests/exceptions/source/backtrace/not_enough_arguments.py", line 24, in <module>
|
|
not_decorated(3)
|
|
TypeError: not_decorated() missing 2 required positional arguments: 'y' and 'z'
|