diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-10-14 15:08:14 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-10-14 15:16:04 +0200 |
| commit | ad01ccf4e59f632ead507646b10310e794b8f0c0 (patch) | |
| tree | 4f54b73a912873ed9f8edf9de3dbc0bcbb9e3121 /wrappers/python/eduvpn_common/event.py | |
| parent | ef224e5dad25debf4526f2fb017bd771a60448dd (diff) | |
Python: Run isort
Diffstat (limited to 'wrappers/python/eduvpn_common/event.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/event.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/wrappers/python/eduvpn_common/event.py b/wrappers/python/eduvpn_common/event.py index 1e42ef4..940d0c0 100644 --- a/wrappers/python/eduvpn_common/event.py +++ b/wrappers/python/eduvpn_common/event.py @@ -1,15 +1,12 @@ -from ctypes import c_void_p, CDLL +from ctypes import CDLL, c_void_p from typing import Any, Callable, Dict, List, Tuple + +from eduvpn_common.server import (get_locations, get_servers, + get_transition_profiles, + get_transition_server) from eduvpn_common.state import State, StateType -from eduvpn_common.server import ( - get_locations, - get_transition_profiles, - get_transition_server, - get_servers, -) from eduvpn_common.types import get_ptr_string - EDUVPN_CALLBACK_PROPERTY = "_eduvpn_property_callback" # A state transition decorator for classes |
