aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/web_ui
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-10-11 11:17:56 +0200
committerWojtek Kosior <koszko@koszko.org>2022-10-11 13:12:15 +0200
commit634cef218e9979053da3367c79de6d740633c61a (patch)
tree317ebb413ad98067c142004c0da79f2cbb160457 /src/hydrilla/proxy/web_ui
parent94e140e685baae38e8977fe90a3304bbc041ae66 (diff)
downloadhaketilo-hydrilla-634cef218e9979053da3367c79de6d740633c61a.tar.gz
haketilo-hydrilla-634cef218e9979053da3367c79de6d740633c61a.zip
[builder][server][proxy] remove "from __future__ import annotations"
Diffstat (limited to 'src/hydrilla/proxy/web_ui')
-rw-r--r--src/hydrilla/proxy/web_ui/items.py3
-rw-r--r--src/hydrilla/proxy/web_ui/items_import.py3
-rw-r--r--src/hydrilla/proxy/web_ui/prompts.py3
-rw-r--r--src/hydrilla/proxy/web_ui/repos.py3
-rw-r--r--src/hydrilla/proxy/web_ui/root.py3
-rw-r--r--src/hydrilla/proxy/web_ui/rules.py3
6 files changed, 0 insertions, 18 deletions
diff --git a/src/hydrilla/proxy/web_ui/items.py b/src/hydrilla/proxy/web_ui/items.py
index 01b201d..808fb6d 100644
--- a/src/hydrilla/proxy/web_ui/items.py
+++ b/src/hydrilla/proxy/web_ui/items.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import typing as t
from urllib.parse import unquote
diff --git a/src/hydrilla/proxy/web_ui/items_import.py b/src/hydrilla/proxy/web_ui/items_import.py
index b335237..a5b5f18 100644
--- a/src/hydrilla/proxy/web_ui/items_import.py
+++ b/src/hydrilla/proxy/web_ui/items_import.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import tempfile
import zipfile
import re
diff --git a/src/hydrilla/proxy/web_ui/prompts.py b/src/hydrilla/proxy/web_ui/prompts.py
index 699409d..b5e052d 100644
--- a/src/hydrilla/proxy/web_ui/prompts.py
+++ b/src/hydrilla/proxy/web_ui/prompts.py
@@ -26,9 +26,6 @@
# code in a proprietary program, I am not going to enforce this in
# court.
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import typing as t
from urllib.parse import urlencode
diff --git a/src/hydrilla/proxy/web_ui/repos.py b/src/hydrilla/proxy/web_ui/repos.py
index f5006c5..bdccd76 100644
--- a/src/hydrilla/proxy/web_ui/repos.py
+++ b/src/hydrilla/proxy/web_ui/repos.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import typing as t
import flask
diff --git a/src/hydrilla/proxy/web_ui/root.py b/src/hydrilla/proxy/web_ui/root.py
index 14b44ff..18ea18e 100644
--- a/src/hydrilla/proxy/web_ui/root.py
+++ b/src/hydrilla/proxy/web_ui/root.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import typing as t
from threading import Lock
diff --git a/src/hydrilla/proxy/web_ui/rules.py b/src/hydrilla/proxy/web_ui/rules.py
index 3ceb294..56753a3 100644
--- a/src/hydrilla/proxy/web_ui/rules.py
+++ b/src/hydrilla/proxy/web_ui/rules.py
@@ -25,9 +25,6 @@
# code in a proprietary program, I am not going to enforce this in
# court.
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import typing as t
import flask