From 634cef218e9979053da3367c79de6d740633c61a Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Tue, 11 Oct 2022 11:17:56 +0200 Subject: [builder][server][proxy] remove "from __future__ import annotations" --- src/hydrilla/proxy/state_impl/_operations/load_packages.py | 3 --- src/hydrilla/proxy/state_impl/_operations/prune_orphans.py | 3 --- src/hydrilla/proxy/state_impl/_operations/pull_missing_files.py | 3 --- src/hydrilla/proxy/state_impl/_operations/recompute_dependencies.py | 3 --- 4 files changed, 12 deletions(-) (limited to 'src/hydrilla/proxy/state_impl/_operations') diff --git a/src/hydrilla/proxy/state_impl/_operations/load_packages.py b/src/hydrilla/proxy/state_impl/_operations/load_packages.py index af9557a..288ee5b 100644 --- a/src/hydrilla/proxy/state_impl/_operations/load_packages.py +++ b/src/hydrilla/proxy/state_impl/_operations/load_packages.py @@ -29,9 +29,6 @@ .... """ -# Enable using with Python 3.7. -from __future__ import annotations - import io import mimetypes import sqlite3 diff --git a/src/hydrilla/proxy/state_impl/_operations/prune_orphans.py b/src/hydrilla/proxy/state_impl/_operations/prune_orphans.py index 5eb8cf7..7bb5eb5 100644 --- a/src/hydrilla/proxy/state_impl/_operations/prune_orphans.py +++ b/src/hydrilla/proxy/state_impl/_operations/prune_orphans.py @@ -29,9 +29,6 @@ .... """ -# Enable using with Python 3.7. -from __future__ import annotations - import sqlite3 from pathlib import Path diff --git a/src/hydrilla/proxy/state_impl/_operations/pull_missing_files.py b/src/hydrilla/proxy/state_impl/_operations/pull_missing_files.py index 7c20522..b4bc1ac 100644 --- a/src/hydrilla/proxy/state_impl/_operations/pull_missing_files.py +++ b/src/hydrilla/proxy/state_impl/_operations/pull_missing_files.py @@ -29,9 +29,6 @@ .... """ -# Enable using with Python 3.7. -from __future__ import annotations - import sqlite3 import hashlib diff --git a/src/hydrilla/proxy/state_impl/_operations/recompute_dependencies.py b/src/hydrilla/proxy/state_impl/_operations/recompute_dependencies.py index 4cc4e7a..399e20e 100644 --- a/src/hydrilla/proxy/state_impl/_operations/recompute_dependencies.py +++ b/src/hydrilla/proxy/state_impl/_operations/recompute_dependencies.py @@ -29,9 +29,6 @@ .... """ -# Enable using with Python 3.7. -from __future__ import annotations - import sqlite3 import typing as t -- cgit v1.2.3