fix(InterviewBooking): changed to absolute importing

This commit is contained in:
2024-12-21 23:40:32 -07:00
parent d6f078b456
commit 153642b1f5
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
from .ReadDB import ReadDatabase
from ReadDB import ReadDatabase
def getSchedulePackager(file_name):
@ -18,7 +18,7 @@ def getSchedulePackager(file_name):
"interviewDates": ReadDatabase(file_path=file_name)
}
from .WriteDB import AppendAppointment
from WriteDB import AppendAppointment
from email_validator import validate_email, EmailNotValidError