We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd223ee commit 6986e65Copy full SHA for 6986e65
image_in_window_screensaver/file_walker.py
@@ -29,6 +29,7 @@ def walk(mode=None) -> List:
29
else:
30
l.log("path does not exist")
31
exit()
32
+ # l.disable()
33
for folderName, subfolders, filenames in os.walk(path):
34
for filename in filenames:
35
if (filename.endswith('jpg') or
@@ -37,10 +38,11 @@ def walk(mode=None) -> List:
37
38
filename.endswith('.jpeg')):
39
file_path = os.path.join(folderName, filename)
40
- l.log([file_path, filename])
41
+ # l.log([file_path, filename])
42
if ignore and is_exclude_image(file_path, ignore):
43
continue
44
image_paths.append(file_path)
45
+
46
return image_paths
47
48
0 commit comments