Skip to content

Commit

Permalink
indicate unused self
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianegli committed Sep 15, 2022
1 parent a7bc6de commit 49164ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nf_core/modules/lint/module_deprecations.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
log = logging.getLogger(__name__)


def module_deprecations(module_lint_object, module):
def module_deprecations(_, module):
"""
Check that the modules are up to the latest nf-core standard
"""
Expand Down
2 changes: 1 addition & 1 deletion nf_core/modules/lint/module_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
log = logging.getLogger(__name__)


def module_tests(module_lint_object, module):
def module_tests(_, module):
"""
Lint the tests of a module in ``nf-core/modules``
Expand Down
2 changes: 1 addition & 1 deletion nf_core/modules/lint/module_todos.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
log = logging.getLogger(__name__)


def module_todos(module_lint_object, module):
def module_todos(_, module):
"""
Look for TODO statements in the module files
Expand Down

0 comments on commit 49164ae

Please sign in to comment.