Private GIT

Skip to content
Snippets Groups Projects
Commit 7f94d620 authored by labrys's avatar labrys
Browse files

Fix test_lib import

PEP 8: Optimize imports
parent 90a050a5
No related branches found
No related tags found
No related merge requests found
......@@ -25,15 +25,16 @@ Tests:
DBMultiTests
"""
import sys
import os.path
import unittest
import sys
import threading
import tests.test_lib as test
import unittest
sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '../lib')))
sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import tests.test_lib as test
class DBBasicTests(test.SickbeardTestDBCase):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment