We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73c8c17 commit 257389fCopy full SHA for 257389f
get_imports.py
@@ -220,11 +220,15 @@ def get_files_for_example(example_path):
220
for _sub_dir in cur_tuple[1]:
221
dir_tuple = (dir_tuple[0], dir_tuple[1] + (_sub_dir,))
222
for _sub_file in cur_tuple[2]:
223
- dir_tuple = (dir_tuple[0], dir_tuple[1] + (_sub_file,))
+ if _sub_file.split(".")[-1] in SHOWN_FILETYPES_EXAMPLE:
224
+ dir_tuple = (dir_tuple[0], dir_tuple[1] + (_sub_file,))
225
226
# e.g. ("dir_name", ("file_1.txt", "file_2.txt"))
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
+ ):
232
found_files.add(dir_tuple)
233
return found_files
234
0 commit comments