summaryrefslogtreecommitdiff
path: root/pylint/test/functional/singledispatch_functions_py3.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/singledispatch_functions_py3.py')
-rw-r--r--pylint/test/functional/singledispatch_functions_py3.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/test/functional/singledispatch_functions_py3.py b/pylint/test/functional/singledispatch_functions_py3.py
index 241918ba0..0199ddc18 100644
--- a/pylint/test/functional/singledispatch_functions_py3.py
+++ b/pylint/test/functional/singledispatch_functions_py3.py
@@ -57,6 +57,7 @@ def with_extra_arg(arg, verbose=False):
@with_extra_arg.register(str)
def _(arg, verbose=False):
+ unused = 42 # [unused-variable]
return arg[::-1]