Skip to content

Commit

Permalink
Fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mpellicc committed Jan 26, 2024
1 parent 3eaa6de commit 8d5ac7e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 385 deletions.
2 changes: 1 addition & 1 deletion env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ CHAT_IDS_FILEPATH=data/chat_ids.pkl

# Serie A Calendar
SERIE_A_CALENDAR_URL=https://fixturedownload.com/download/serie-a-2023-WEuropeStandardTime.csv
SERIE_A_CALENDAR_PATH=seriea_calendar.csv
SERIE_A_CALENDAR_PATH=data/seriea_calendar.csv
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from datetime import datetime, timedelta, time
import os
import pickle
from datetime import datetime, time, timedelta
from typing import Final

from dotenv import load_dotenv
from telegram import Update
from telegram.ext import (
Application,
CommandHandler,
ConversationHandler,
ContextTypes,
ConversationHandler,
MessageHandler,
filters,
)
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
python-dotenv==1.0.0
python-telegram-bot==20.5
python-telegram-bot[job_queue]==20.5
requests==2.31.0
Loading

0 comments on commit 8d5ac7e

Please sign in to comment.