diff options
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 |
