Skip to content

Commit 8b82ebe

Browse files
author
Jonathon Belotti
committed
small tidy up of comment
1 parent 795934a commit 8b82ebe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/namespace_pkgs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def implicit_namespace_packages(directory, ignored_dirnames=None) -> Set[str]:
5353
"""
5454
namespace_pkg_dirs = set()
5555
for dirpath, dirnames, filenames in os.walk(directory, topdown=True):
56-
# We are only interested in dirs with no init file
56+
# We are only interested in dirs with no __init__.py file
5757
if "__init__.py" in filenames:
5858
dirnames[:] = [] # Remove dirnames from search
5959
continue

0 commit comments

Comments
 (0)