undo sqlthread changes

This commit is contained in:
Muzahid 2021-06-21 21:21:15 +05:30
parent 554db1a2c1
commit b78ca19d1a
Signed by untrusted user: cis-muzahid
GPG Key ID: 1DC85E7D3AB613EA

View File

@ -5,16 +5,16 @@ import tempfile
import threading
import unittest
# from .common import skip_python3
#
# skip_python3()
from .common import skip_python3
skip_python3()
os.environ['BITMESSAGE_HOME'] = tempfile.gettempdir()
from ..pybitmessage.helper_sql import (
from pybitmessage.helper_sql import (
sqlQuery, sql_ready, sqlStoredProcedure) # noqa:E402
from ..pybitmessage.class_sqlThread import sqlThread # noqa:E402
from ..pybitmessage.addresses import encodeAddress # noqa:E402
from pybitmessage.class_sqlThread import sqlThread # noqa:E402
from pybitmessage.addresses import encodeAddress # noqa:E402
class TestSqlThread(unittest.TestCase):