We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ed87f commit 82de406Copy full SHA for 82de406
be_repo/modules/view.py
@@ -30,6 +30,7 @@ def display_recommendations(self, recommendations):
30
if not recommendations:
31
print("No job recommendations found based on your resume.")
32
return
33
- print("\nRecommended Jobs for You:")
+ res = "\nRecommended Jobs for You:\n"
34
for idx, job in enumerate(recommendations, start=1):
35
- print(f"{idx}. {job}")
+ res += f"{idx}. {job}\n"
36
+ return res
0 commit comments