We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c711ce commit be88b6fCopy full SHA for be88b6f
1 file changed
ai/analyzer.py
@@ -71,6 +71,8 @@ def detect_language(path: str):
71
return "text"
72
if "_virtualenv.py" in path:
73
74
+ if "activate_this.py" in path:
75
+ return "text"
76
ext = Path(path).suffix.lower()
77
return EXT_LANG.get(ext, "text")
78
0 commit comments