Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
larsborasmussen committed Dec 17, 2024
1 parent c983239 commit a09a06a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/chatgpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def scan_files():
for root, _, filenames in os.walk("/app"):
for filename in filenames:
filepath = os.path.join(root, filename)
if "/venv/" not in filepath and not any(filepath.endswith(x) for x in ["run.sh", "main.py"]):
if "/venv/" not in filepath and not any(filepath.endswith(x) for x in ["run.sh"]):
try:
mime_type = mime.from_file(filepath)
with open(filepath, "rb") as f:
Expand Down

0 comments on commit a09a06a

Please sign in to comment.