summaryrefslogtreecommitdiff
path: root/wrappers/python/tests.py
diff options
context:
space:
mode:
authorJeroen Wijenbergh <jeroenwijenbergh@protonmail.com>2024-05-08 11:52:35 +0200
committerJeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com>2024-05-08 13:54:45 +0000
commit4e7d42986b333147bbc89508c3ebeb9cc289374d (patch)
tree4fa15c2cbb0b287b0c8e652948d79d5ded92e680 /wrappers/python/tests.py
parent9ce4e4458794290755c68a180125acc68ab84038 (diff)
Format: Run Ruff & isort
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__)))))