diff --git a/src/telegram_handler/start_handler_constats.py b/src/telegram_handler/start_handler_constats.py index 5e095d4..ff3f607 100644 --- a/src/telegram_handler/start_handler_constats.py +++ b/src/telegram_handler/start_handler_constats.py @@ -8,7 +8,7 @@ POSITION_MESSAGE: str = "What kind of position are you looking for? ✨\n" \ POSITION_NOT_FOUND: str = "I couldn't find any positions matching your request. 😕\n" \ "Please try again" LOCATION_MESSAGE: str = "Where are you hoping to find a position? 🌎\n" \ - "(e.g., Rishon Lezion, New York City, San Francisco)" \ + "(e.g., Rishon Lezion, New York City, San Francisco)\n" \ "You can enter multiple tags separated by commas. 🔍" EXPERIENCE_MESSAGE: str = "How many years of professional experience do you have in this field? 💼\n" FILTER_TILE_MESSAGE: str = "To help me narrow down your search, tell me about any relevant tags or keywords.\n" \ diff --git a/src/telegram_handler/telegram_start_handler.py b/src/telegram_handler/telegram_start_handler.py index 8da8bd3..c2daced 100644 --- a/src/telegram_handler/telegram_start_handler.py +++ b/src/telegram_handler/telegram_start_handler.py @@ -5,10 +5,9 @@ from telegram.ext import ( ContextTypes, ConversationHandler, CommandHandler, MessageHandler, filters, ) +from jobspy.scrapers.utils import create_logger from model.Position import Position from model.User import User -from model.user_repository import UserRepository, user_repository -from jobspy.scrapers.utils import create_logger from telegram_bot import TelegramBot from telegram_handler.start_handler_constats import START_MESSAGE, POSITION_MESSAGE, POSITION_NOT_FOUND, \ LOCATION_MESSAGE, EXPERIENCE_MESSAGE, FILTER_TILE_MESSAGE, THANK_YOU_MESSAGE, BYE_MESSAGE, VERIFY_MESSAGE