Skip to content

Commit c41d981

Browse files
authored
HotFix: Skip unknown file counts (#490)
1 parent 764eaee commit c41d981

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/modules/parsing/graph_construction/parsing_helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,8 +713,8 @@ def detect_repo_language(repo_dir):
713713
lang_count["markdown"] += 1
714714
elif ext in [".xml", ".xsq"]:
715715
lang_count["xml"] += 1
716-
else:
717-
lang_count["other"] += 1
716+
# else:
717+
# lang_count["other"] += 1
718718
except Exception as e:
719719
logger.warning(f"Error processing file {file_path}: {e}")
720720
continue

0 commit comments

Comments
 (0)