diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-12-20 16:08:36 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-12-21 18:28:52 +0100 |
| commit | b6c079587e035b073c32f52e537e253ae5a3f440 (patch) | |
| tree | f92d28dc2f852038104798a3917c31a6f342b42a /wrappers | |
| parent | feb5a34fcaefd30c764bd9aa9192f42c5a11b578 (diff) | |
Python: Fix duplicate imports
Diffstat (limited to 'wrappers')
| -rw-r--r-- | wrappers/python/eduvpn_common/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wrappers/python/eduvpn_common/main.py b/wrappers/python/eduvpn_common/main.py index 304e2e8..07e3b6d 100644 --- a/wrappers/python/eduvpn_common/main.py +++ b/wrappers/python/eduvpn_common/main.py @@ -7,8 +7,7 @@ from eduvpn_common.event import EventHandler from eduvpn_common.loader import initialize_functions, load_lib from eduvpn_common.server import Profiles, Config, Token, encode_tokens, get_config, Server, get_transition_server, get_servers from eduvpn_common.state import State, StateType -from eduvpn_common.types import ReadRxBytes, VPNStateChange, decode_res, encode_args, get_data_error, get_bool -from eduvpn_common.types import VPNStateChange, ReadRXBytes, cToken, decode_res, encode_args, get_data_error, get_bool +from eduvpn_common.types import VPNStateChange, ReadRxBytes, cToken, decode_res, encode_args, get_data_error, get_bool class EduVPN(object): |
