Skip to content

Commit

Permalink
update: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
terryyz committed Apr 19, 2024
1 parent 2de8321 commit e1f67d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def reconstruct_problem(data):
def check_test_wo_doc(data):
"Check if the problem is related to file system, network requests and database"

if any([lib in data["libs"] for lib in ["shutil", "requests", "django", "sqlite3", "datetime", "flask", "turtle"]]):
if any([lib in data["libs"] for lib in ["shutil", "requests", "django", "sqlite3", "datetime", "flask", "turtle", "smtplib"]]):
return True
elif any([kw in data["prompt"] for kw in ["url"]]):
return True
Expand Down

0 comments on commit e1f67d0

Please sign in to comment.