From 7aa8632aa164183adff5a0fb7be09ba708e97008 Mon Sep 17 00:00:00 2001
From: Yariv Menachem <yariv220895@gmail.com>
Date: Sun, 5 Jan 2025 16:17:21 +0200
Subject: [PATCH] text fixes

---
 src/telegram_handler/start_handler_constats.py | 2 +-
 src/telegram_handler/telegram_start_handler.py | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

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