Skip to content

Commit bf29011

Browse files
committed
nits to classifier
1 parent 4749eb6 commit bf29011

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/classify_problems.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import psycopg
55
import requests
66
from bs4 import BeautifulSoup
7-
import json
87
from dotenv import load_dotenv
98
import google.generativeai as genai
109
import re
@@ -168,7 +167,7 @@ def fetch_codeforces_problem(problem_info):
168167
"tags": ["gym"],
169168
}
170169
elif not problem:
171-
print(f"Problem not found in API response")
170+
print("Problem not found in API response")
172171
return None
173172
else:
174173
problem = {"name": problem["name"], "tags": problem.get("tags", [])}

0 commit comments

Comments
 (0)