Use module-relative imports

This commit is contained in:
Odd Stråbø 2021-10-10 20:38:25 +02:00
parent 086a704f24
commit 53c887d354
53 changed files with 166 additions and 195 deletions

View file

@ -10,11 +10,11 @@ from datetime import date
from six.moves import range, queue as Queue
import requests
from helper import settings, stop, window
from jellyfin import Jellyfin
from jellyfin import api
from helper.exceptions import HTTPException
from helper import LazyLogger
from .helper import settings, stop, window, LazyLogger
from .jellyfin import Jellyfin
from .jellyfin import api
from .helper.exceptions import HTTPException
#################################################################################################