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/server.py | |
| parent | ef224e5dad25debf4526f2fb017bd771a60448dd (diff) | |
Python: Run isort
Diffstat (limited to 'wrappers/python/eduvpn_common/server.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/server.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/wrappers/python/eduvpn_common/server.py b/wrappers/python/eduvpn_common/server.py index 01b5204..8dac3c1 100644 --- a/wrappers/python/eduvpn_common/server.py +++ b/wrappers/python/eduvpn_common/server.py @@ -1,7 +1,9 @@ -from typing import List, Optional, Type -from eduvpn_common.types import cServer, cServers, cServerLocations, cServerProfiles -from ctypes import c_void_p, cast, POINTER, CDLL +from ctypes import CDLL, POINTER, c_void_p, cast from datetime import datetime +from typing import List, Optional, Type + +from eduvpn_common.types import (cServer, cServerLocations, cServerProfiles, + cServers) class Profile: |
