Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Sep 6, 2023
1 parent 96b3d3d commit 2ee98fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setuptools/tests/namespaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def iter_namespace_pkgs(namespace):
parts = namespace.split(".")
for i in range(len(parts)):
yield ".".join(parts[:i+1])
yield ".".join(parts[: i + 1])


def build_namespace_package(tmpdir, name, version="1.0", impl="pkg_resources"):
Expand Down
2 changes: 1 addition & 1 deletion setuptools/tests/test_editable_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def test_nspkg_file_is_unique(self, tmp_path, monkeypatch):
(
"pkg_resources",
# "pkgutil", => does not work
)
),
)
@pytest.mark.parametrize("ns", ("myns.n",))
def test_namespace_package_importable(
Expand Down

0 comments on commit 2ee98fd

Please sign in to comment.