From ad01ccf4e59f632ead507646b10310e794b8f0c0 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Fri, 14 Oct 2022 15:08:14 +0200 Subject: Python: Run isort --- wrappers/python/eduvpn_common/main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'wrappers/python/eduvpn_common/main.py') 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): -- cgit v1.2.3