aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/builder
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/builder
parent94e140e685baae38e8977fe90a3304bbc041ae66 (diff)
downloadhaketilo-hydrilla-634cef218e9979053da3367c79de6d740633c61a.tar.gz
haketilo-hydrilla-634cef218e9979053da3367c79de6d740633c61a.zip
[builder][server][proxy] remove "from __future__ import annotations"
Diffstat (limited to 'src/hydrilla/builder')
-rw-r--r--src/hydrilla/builder/build.py3
-rw-r--r--src/hydrilla/builder/common_errors.py3
-rw-r--r--src/hydrilla/builder/local_apt.py3
-rw-r--r--src/hydrilla/builder/piggybacking.py3
4 files changed, 0 insertions, 12 deletions
diff --git a/src/hydrilla/builder/build.py b/src/hydrilla/builder/build.py
index 8a97a20..3ae6ea9 100644
--- a/src/hydrilla/builder/build.py
+++ b/src/hydrilla/builder/build.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 json
import re
import zipfile
diff --git a/src/hydrilla/builder/common_errors.py b/src/hydrilla/builder/common_errors.py
index 13d32a5..c5d131f 100644
--- a/src/hydrilla/builder/common_errors.py
+++ b/src/hydrilla/builder/common_errors.py
@@ -29,9 +29,6 @@
This module defines error types for use in other parts of Hydrilla builder.
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
from pathlib import Path
from typing import Optional
from subprocess import CompletedProcess as CP
diff --git a/src/hydrilla/builder/local_apt.py b/src/hydrilla/builder/local_apt.py
index 385a533..cc28bcc 100644
--- a/src/hydrilla/builder/local_apt.py
+++ b/src/hydrilla/builder/local_apt.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 zipfile
import shutil
import re
diff --git a/src/hydrilla/builder/piggybacking.py b/src/hydrilla/builder/piggybacking.py
index c152135..3be674e 100644
--- a/src/hydrilla/builder/piggybacking.py
+++ b/src/hydrilla/builder/piggybacking.py
@@ -30,9 +30,6 @@ This module contains definitions that may be reused by multiple piggybacked
software system backends.
"""
-# Enable using with Python 3.7.
-from __future__ import annotations
-
import typing as t
from pathlib import Path, PurePosixPath