Skip to content

Commit c329d0d

Browse files
committed
Revert build_direcoty_md
1 parent fe6daa9 commit c329d0d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

scripts/build_directory_md.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,10 @@
55

66
URL_BASE = "https://github.com/TheAlgorithms/Python/blob/master"
77

8-
IGNORED_DIRS = ["scripts", "venv"]
9-
108

119
def good_file_paths(top_dir: str = ".") -> Iterator[str]:
1210
for dir_path, dir_names, filenames in os.walk(top_dir):
13-
dir_names[:] = [
14-
d for d in dir_names if d not in IGNORED_DIRS and d[0] not in "._"
15-
]
11+
dir_names[:] = [d for d in dir_names if d != "scripts" and d[0] not in "._"]
1612
for filename in filenames:
1713
if filename == "__init__.py":
1814
continue

0 commit comments

Comments
 (0)