Skip to content

Commit

Permalink
fix print stmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wenhwang97 committed Mar 22, 2024
1 parent a31207b commit 97c8f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classifier/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def classify():
article["status"] = "undetermined"

requests.patch(db_url, headers=headers, json=article)
print(f"Article classified: {article["originalTitle"]} ({article["translatedTitle"]})")
print("Article classified: " + article["originalTitle"])

if __name__ == '__main__':
load_dotenv()
Expand Down

0 comments on commit 97c8f62

Please sign in to comment.