diff options
| author | Jeroen Wijenbergh <jeroenwijenbergh@protonmail.com> | 2024-05-08 11:52:35 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-05-08 13:54:45 +0000 |
| commit | 4e7d42986b333147bbc89508c3ebeb9cc289374d (patch) | |
| tree | 4fa15c2cbb0b287b0c8e652948d79d5ded92e680 /wrappers/python/example/main.py | |
| parent | 9ce4e4458794290755c68a180125acc68ab84038 (diff) | |
Format: Run Ruff & isort
Diffstat (limited to 'wrappers/python/example/main.py')
| -rw-r--r-- | wrappers/python/example/main.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/wrappers/python/example/main.py b/wrappers/python/example/main.py index f6103bb..8008592 100644 --- a/wrappers/python/example/main.py +++ b/wrappers/python/example/main.py @@ -1,10 +1,11 @@ -from eduvpn_common import __version__ as commonver +import sys +import webbrowser +from typing import List, Optional, Tuple + import eduvpn_common.main as eduvpn -from eduvpn_common.state import State, StateType +from eduvpn_common import __version__ as commonver from eduvpn_common.server import Config, Profiles -from typing import Optional, List, Tuple -import webbrowser -import sys +from eduvpn_common.state import State, StateType # Asks the user for a profile index |
