text fixes

pull/231/head
Yariv Menachem 2025-01-05 16:17:21 +02:00
parent 95c1672f11
commit 7aa8632aa1
2 changed files with 2 additions and 3 deletions

View File

@ -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" \

View File

@ -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