diff --git a/cython_lint/cython_lint.py b/cython_lint/cython_lint.py index c74a2a9..6efca91 100644 --- a/cython_lint/cython_lint.py +++ b/cython_lint/cython_lint.py @@ -256,6 +256,7 @@ def visit_funcdef( and _def[0] != func_name and _def[0] not in [i[0] for i in args] and not _def[0].startswith('_') + and not _def[0].startswith('unused') and _def[0] not in global_names ):