Solved importing issues for kviy application

This commit is contained in:
jai.s 2020-09-25 20:02:47 +05:30
parent e1df39065c
commit b9a71d35a9
No known key found for this signature in database
GPG Key ID: 360CFA25EFC67D12
2 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Module for tracking objects
import time import time
from threading import RLock from threading import RLock
try: try:
from network.connectionpool import connectionpool from network import connectionpool
from network.dandelion import Dandelion from network.dandelion import Dandelion
from network.randomtrackingdict import RandomTrackingDict from network.randomtrackingdict import RandomTrackingDict
except (ModuleNotFoundError,ImportError): except (ModuleNotFoundError,ImportError):

View File

@ -4,7 +4,6 @@ import logging
import random import random
import threading import threading
from contextlib import contextmanager from contextlib import contextmanager
from pybitmessage.debug import logger
class StoppableThread(threading.Thread): class StoppableThread(threading.Thread):
"""Base class for application threads with stopThread method""" """Base class for application threads with stopThread method"""