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