Skip to content

Commit a372e71

Browse files
committed
ログを減らした
1 parent 87fe6cd commit a372e71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crsearch.json/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,8 @@ def generate(self, base_dir, file_paths, all_file_paths):
351351

352352
namespaces = {}
353353
for file_path in all_file_paths:
354-
print(f'processing {file_path}...')
354+
if file_path.count("/") <= 2:
355+
print(f'processing {file_path}...')
355356
names = list(file_path[len(base_dir) + 1:-3].split('/'))
356357
with open(file_path) as f:
357358
md = f.read()

0 commit comments

Comments
 (0)