mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -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 itertools import imap
|
||||
from exceptions import DelugeRPCError
|
||||
from protocol import DelugeRPCRequest, DelugeRPCResponse
|
||||
from transfer import DelugeTransfer
|
||||
from .exceptions import DelugeRPCError
|
||||
from .protocol import DelugeRPCRequest, DelugeRPCResponse
|
||||
from .transfer import DelugeTransfer
|
||||
|
||||
__all__ = ["DelugeClient"]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue