Skip to content

Commit 8c9ada7

Browse files
committed
its *args not **args...
1 parent a4a6c0a commit 8c9ada7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytest_twisted.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def repr_args_kwargs(*args, **kwargs):
135135

136136

137137
def positional_not_allowed_exception(*args, **kwargs):
138-
arguments = repr_args_kwargs(**args, **kwargs)
138+
arguments = repr_args_kwargs(*args, **kwargs)
139139

140140
return DecoratorArgumentsError(
141141
'Positional decorator arguments not allowed: {}'.format(arguments),

0 commit comments

Comments
 (0)