1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 09:26:57 -05:00

Merge pull request #24 from deathbybandaid/dev

Adjust Import
This commit is contained in:
Deathbybandaid 2020-10-09 19:40:43 -04:00 committed by GitHub
commit 9409aa32bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import time import time
from fHDHR.epghandler import epgtypes from . import epgtypes
class EPGhandler(): class EPGhandler():

View File

@ -2,7 +2,7 @@ import os
import json import json
from collections import OrderedDict from collections import OrderedDict
from fHDHR.epghandler.epgtypes import blocks, zap2it from . import blocks, zap2it
class EPGTypes(): class EPGTypes():

View File

@ -1,6 +1,6 @@
import datetime import datetime
import fHDHR.originservice.nextpvr as serviceorigin from . import nextpvr as serviceorigin
from fHDHR.tools import hours_between_datetime from fHDHR.tools import hours_between_datetime
from fHDHR.fHDHRerrors import LoginError from fHDHR.fHDHRerrors import LoginError