fixed absolute imports
This commit is contained in:
parent
1ef6b34e93
commit
3ac8f15ff1
|
@ -4,7 +4,10 @@ Track randomize ordered dict
|
|||
from threading import RLock
|
||||
from time import time
|
||||
|
||||
from pybitmessage import helper_random
|
||||
try:
|
||||
import helper_random
|
||||
except ImportError:
|
||||
from . import helper_random
|
||||
|
||||
|
||||
class RandomTrackingDict(object):
|
||||
|
|
Reference in New Issue
Block a user