diff options
| author | danields <danields761@gmail.com> | 2017-10-28 02:18:41 +0300 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-08-10 09:26:55 +0200 |
| commit | 8c9ccd3c815298064d0bd4272f1a3d0934c80bc2 (patch) | |
| tree | f469681f9cda6176c8693044dfeb49ae6a1bc6de /pylint/test/functional/async_functions.py | |
| parent | 3226436cdee6de0d1e1058f431d0432316cc4d7a (diff) | |
| download | pylint-git-8c9ccd3c815298064d0bd4272f1a3d0934c80bc2.tar.gz | |
Now linter reports on each duplicated argument with node information if it avaliable. Fix #1712
Diffstat (limited to 'pylint/test/functional/async_functions.py')
| -rw-r--r-- | pylint/test/functional/async_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/test/functional/async_functions.py b/pylint/test/functional/async_functions.py index f8427d073..2f2252de8 100644 --- a/pylint/test/functional/async_functions.py +++ b/pylint/test/functional/async_functions.py @@ -53,7 +53,7 @@ async def complex_function(this, function, has, more, arguments, than, pass -# +1: [duplicate-argument-name,dangerous-default-value] +# +1: [duplicate-argument-name, duplicate-argument-name, dangerous-default-value] async def func(a, a, b=[]): return a, b |
