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
from threading import RLock
try:
from network.connectionpool import connectionpool
from network import connectionpool
from network.dandelion import Dandelion
from network.randomtrackingdict import RandomTrackingDict
except (ModuleNotFoundError,ImportError):

View File

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