Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Nov 3, 2020
1 parent 7559dd6 commit bfb0abd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion repo_helper/configuration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
sphinx_conf_preamble,
sphinx_html_theme
)
from repo_helper.configuration.metadata import ( # pylint: disable=useless-return
from repo_helper.configuration.metadata import ( # pylint: disable=redefined-builtin
author,
classifiers,
copyright_years,
Expand Down
8 changes: 6 additions & 2 deletions tests/test_files/test_packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ def test_make_manifest_case_1(
check_file_output(tmp_pathplus / managed_files[0], file_regression)


def test_make_manifest_case_2(tmp_pathplus, demo_environment, file_regression: FileRegressionFixture):
def test_make_manifest_case_2(
tmp_pathplus,
demo_environment,
file_regression: FileRegressionFixture,
): # pylint: disable=useless-return
demo_environment.globals["manifest_additional"] = ["recursive-include hello_world/templates *"]
demo_environment.globals["additional_requirements_files"] = ["hello_world/submodule/requirements.txt"]

Expand All @@ -59,7 +63,7 @@ def test_make_manifest_case_2(tmp_pathplus, demo_environment, file_regression: F
# additional_requirements_files=[],
# ))

return # pylint: disable=useless-return
return


def test_make_setup_case_1(tmp_pathplus, demo_environment, file_regression: FileRegressionFixture):
Expand Down

0 comments on commit bfb0abd

Please sign in to comment.