Skip to content

Commit 06534e2

Browse files
authored
Merge pull request #7 from circuitpython/skip-screenshot
Can't use .circuitpython.skip, that's used to skip pylint.
2 parents 5aced1d + dbb4ac2 commit 06534e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

get_imports.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ def get_learn_guide_cp_projects():
182182
continue
183183

184184
# Skip this folder and all subfolders
185-
if ".circuitpython.skip" in filenames:
185+
if ".circuitpython.skip-screenshot" in filenames:
186186
del dirnames[:]
187187
continue
188188
# Skip files in this folder, but handle sub-folders
189-
if ".circuitpython.skip-here" in filenames:
189+
if ".circuitpython.skip-screenshot-here" in filenames:
190190
continue
191191
# Do not reurse, but handle files in this folder
192-
if ".circuitpython.skip-sub" in filenames:
192+
if ".circuitpython.skip-screenshot-sub" in filenames:
193193
del dirnames[:]
194194

195195
if any(f for f in filenames if f.endswith(".py")):

0 commit comments

Comments
 (0)