louiscklaw
commited on
Commit
·
1946e20
1
Parent(s):
69baa31
update ,
Browse files- check_valid_image.py +1 -1
check_valid_image.py
CHANGED
@@ -35,7 +35,7 @@ def action(in_path):
|
|
35 |
for root, _, files in os.walk(in_path):
|
36 |
for file in files:
|
37 |
file_path = os.path.join(root, file)
|
38 |
-
print(file_path)
|
39 |
|
40 |
with open(file_path, "rb") as f:
|
41 |
if is_image(file_path):
|
|
|
35 |
for root, _, files in os.walk(in_path):
|
36 |
for file in files:
|
37 |
file_path = os.path.join(root, file)
|
38 |
+
# print(file_path)
|
39 |
|
40 |
with open(file_path, "rb") as f:
|
41 |
if is_image(file_path):
|