summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/main.py
diff options
context:
space:
mode:
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):