Skip to content

Commit

Permalink
pylint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhermann committed Sep 8, 2020
1 parent b23c393 commit d2a7cfc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/src/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=
# pylint: disable=redefined-outer-name
""" py.test dynamic configuration.
For details needed to understand these tests, refer to:
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/src/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from markers import *
from {{ cookiecutter.pkg_name }} import __version__ as version
from {{ cookiecutter.pkg_name }} import __main__ as main
from {{ cookiecutter.pkg_name }} import commands
from {{ cookiecutter.pkg_name }} import commands # register sub-commands pylint: disable=unused-import
UsageError = sh.ErrorReturnCode_2 # pylint: disable=no-member
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#
# ## LICENSE_SHORT ##
import os
import re
import sys
import logging

Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pylint: disable=wildcard-import, unused-wildcard-import, bad-continuation
# pylint: disable=wildcard-import, unused-wildcard-import, bad-continuation, invalid-name
""" Project automation for Invoke.
"""
# Copyright © {{ cookiecutter.year }} {{ cookiecutter.full_name }} <{{ cookiecutter.email }}>
Expand Down

0 comments on commit d2a7cfc

Please sign in to comment.