Skip to content

Commit 257389f

Browse files
committed
filter subdir files by shown type. omit directories if there are no shown file types inside of them.
1 parent 73c8c17 commit 257389f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

get_imports.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,15 @@ def get_files_for_example(example_path):
220220
for _sub_dir in cur_tuple[1]:
221221
dir_tuple = (dir_tuple[0], dir_tuple[1] + (_sub_dir,))
222222
for _sub_file in cur_tuple[2]:
223-
dir_tuple = (dir_tuple[0], dir_tuple[1] + (_sub_file,))
223+
if _sub_file.split(".")[-1] in SHOWN_FILETYPES_EXAMPLE:
224+
dir_tuple = (dir_tuple[0], dir_tuple[1] + (_sub_file,))
224225

225226
# e.g. ("dir_name", ("file_1.txt", "file_2.txt"))
226227

227-
if ".circuitpython.skip-screenshot" not in dir_tuple[1]:
228+
if (
229+
".circuitpython.skip-screenshot" not in dir_tuple[1]
230+
and len(dir_tuple[1]) > 0
231+
):
228232
found_files.add(dir_tuple)
229233
return found_files
230234

0 commit comments

Comments
 (0)