aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/policies
diff options
context:
space:
mode:
Diffstat (limited to 'src/hydrilla/proxy/policies')
-rw-r--r--src/hydrilla/proxy/policies/base.py3
-rw-r--r--src/hydrilla/proxy/policies/misc.py3
-rw-r--r--src/hydrilla/proxy/policies/payload.py3
-rw-r--r--src/hydrilla/proxy/policies/payload_resource.py3
-rw-r--r--src/hydrilla/proxy/policies/rule.py3
-rw-r--r--src/hydrilla/proxy/policies/web_ui.py3
6 files changed, 0 insertions, 18 deletions
diff --git a/src/hydrilla/proxy/policies/base.py b/src/hydrilla/proxy/policies/base.py
index c02ea0b..b3d3172 100644
--- a/src/hydrilla/proxy/policies/base.py
+++ b/src/hydrilla/proxy/policies/base.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import dataclasses as dc
import typing as t
import enum
diff --git a/src/hydrilla/proxy/policies/misc.py b/src/hydrilla/proxy/policies/misc.py
index bc3b08f..6d1e032 100644
--- a/src/hydrilla/proxy/policies/misc.py
+++ b/src/hydrilla/proxy/policies/misc.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import dataclasses as dc
import typing as t
import enum
diff --git a/src/hydrilla/proxy/policies/payload.py b/src/hydrilla/proxy/policies/payload.py
index 7eef184..d3e8e30 100644
--- a/src/hydrilla/proxy/policies/payload.py
+++ b/src/hydrilla/proxy/policies/payload.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import dataclasses as dc
import typing as t
import re
diff --git a/src/hydrilla/proxy/policies/payload_resource.py b/src/hydrilla/proxy/policies/payload_resource.py
index 7fdc7ac..d53f1f7 100644
--- a/src/hydrilla/proxy/policies/payload_resource.py
+++ b/src/hydrilla/proxy/policies/payload_resource.py
@@ -54,9 +54,6 @@ consider accesses to non-enabled mappings' resources a security breach
and block them by responding with 403 Not Found.
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import dataclasses as dc
import typing as t
import json
diff --git a/src/hydrilla/proxy/policies/rule.py b/src/hydrilla/proxy/policies/rule.py
index 833d287..b742a64 100644
--- a/src/hydrilla/proxy/policies/rule.py
+++ b/src/hydrilla/proxy/policies/rule.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import dataclasses as dc
import typing as t
diff --git a/src/hydrilla/proxy/policies/web_ui.py b/src/hydrilla/proxy/policies/web_ui.py
index 9f6c0f5..9d31696 100644
--- a/src/hydrilla/proxy/policies/web_ui.py
+++ b/src/hydrilla/proxy/policies/web_ui.py
@@ -29,9 +29,6 @@
.....
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import dataclasses as dc
import typing as t