summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/main.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-14 15:08:14 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-14 15:16:04 +0200
commitad01ccf4e59f632ead507646b10310e794b8f0c0 (patch)
tree4f54b73a912873ed9f8edf9de3dbc0bcbb9e3121 /wrappers/python/eduvpn_common/main.py
parentef224e5dad25debf4526f2fb017bd771a60448dd (diff)
Python: Run isort
Diffstat (limited to 'wrappers/python/eduvpn_common/main.py')
-rw-r--r--wrappers/python/eduvpn_common/main.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/wrappers/python/eduvpn_common/main.py b/wrappers/python/eduvpn_common/main.py
index 1271fb2..c48fce1 100644
--- a/wrappers/python/eduvpn_common/main.py
+++ b/wrappers/python/eduvpn_common/main.py
@@ -1,12 +1,15 @@
+import threading
from ctypes import c_char_p, c_int, c_void_p
from typing import Any, Callable, Dict, Optional, Tuple
-import threading
+
from eduvpn_common.discovery import get_disco_organizations, get_disco_servers
from eduvpn_common.event import EventHandler
from eduvpn_common.loader import initialize_functions, load_lib
-from eduvpn_common.types import VPNStateChange, encode_args, decode_res, get_data_error
from eduvpn_common.server import get_servers
from eduvpn_common.state import State, StateType
+from eduvpn_common.types import (VPNStateChange, decode_res, encode_args,
+ get_data_error)
+
class EduVPN(object):
def __init__(self, name: str, config_directory: str, language: str):