Update references after rename

This commit is contained in:
Panoramic 2024-06-10 22:11:09 +03:00
parent 6c93003ae0
commit 5283482150
Signed by: Panoramic
GPG Key ID: 29FEDD73E66D32F1
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@
import asyncio
try:
from my_project_name import main
from vetting_bot import main
# Run the main function of the bot
asyncio.get_event_loop().run_until_complete(main.main())
except ImportError as e:
print("Unable to import my_project_name.main:", e)
print("Unable to import vetting_bot.main:", e)