mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 13:53:15 -07:00
Python 3: Fix relative imports
This commit is contained in:
parent
ec71e7806d
commit
8434fd5419
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@ import platform
|
||||||
|
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from itertools import imap
|
from itertools import imap
|
||||||
from exceptions import DelugeRPCError
|
from .exceptions import DelugeRPCError
|
||||||
from protocol import DelugeRPCRequest, DelugeRPCResponse
|
from .protocol import DelugeRPCRequest, DelugeRPCResponse
|
||||||
from transfer import DelugeTransfer
|
from .transfer import DelugeTransfer
|
||||||
|
|
||||||
__all__ = ["DelugeClient"]
|
__all__ = ["DelugeClient"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue