mirror of https://github.com/Bunsly/JobSpy
text fixes
parent
95c1672f11
commit
7aa8632aa1
|
@ -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" \
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue