summaryrefslogtreecommitdiff
path: root/wrappers/python/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/tests.py')
-rw-r--r--wrappers/python/tests.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/wrappers/python/tests.py b/wrappers/python/tests.py
index f10eac7..72627a4 100644
--- a/wrappers/python/tests.py
+++ b/wrappers/python/tests.py
@@ -1,12 +1,13 @@
#!/usr/bin/env python3
-import unittest
-import eduvpn_common.main as eduvpn
-import eduvpn_common.event as event
-from eduvpn_common.state import State, StateType
import os
import sys
import threading
+import unittest
+
+import eduvpn_common.event as event
+import eduvpn_common.main as eduvpn
+from eduvpn_common.state import State, StateType
# Import project root directory where the selenium python utility is
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))