summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/discovery.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-26 17:38:29 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-10-26 17:38:29 +0200
commitc5609f55481899a888fd7235ff454fef79d3a7cf (patch)
tree3e0b39c547debd987771c01d9ef255593469c925 /wrappers/python/eduvpn_common/discovery.py
parent516a25eb926a8b9a879e4f38c86d4dbb9b9e0948 (diff)
Autoflake: Remove unused imports
Diffstat (limited to 'wrappers/python/eduvpn_common/discovery.py')
-rw-r--r--wrappers/python/eduvpn_common/discovery.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/wrappers/python/eduvpn_common/discovery.py b/wrappers/python/eduvpn_common/discovery.py
index 7e31a7f..732283a 100644
--- a/wrappers/python/eduvpn_common/discovery.py
+++ b/wrappers/python/eduvpn_common/discovery.py
@@ -1,10 +1,8 @@
-from ctypes import CDLL, POINTER, c_void_p, cast, pointer
+from ctypes import CDLL, POINTER, c_void_p, cast
from typing import List, Optional
from eduvpn_common.types import (
- cDiscoveryOrganization,
cDiscoveryOrganizations,
- cDiscoveryServer,
cDiscoveryServers,
get_ptr_list_strings,
)