Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions tools/base/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ licenses(["notice"]) # Apache 2

envoy_package()

envoy_py_library("tools.base.abstract")

envoy_py_library(
"tools.base.aio",
deps = [
":functional",
requirement("aio.functional"),
],
)

Expand All @@ -22,8 +20,6 @@ envoy_py_library(
],
)

envoy_py_library("tools.base.functional")

envoy_py_library(
"tools.base.runner",
deps = [
Expand Down
165 changes: 0 additions & 165 deletions tools/base/abstract.py

This file was deleted.

2 changes: 1 addition & 1 deletion tools/base/aio.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Any, AsyncGenerator, AsyncIterable, AsyncIterator, Awaitable, Iterable, Iterator, List,
Optional, Union)

from tools.base.functional import async_property
from aio.functional import async_property


class ConcurrentError(Exception):
Expand Down
87 changes: 0 additions & 87 deletions tools/base/functional.py

This file was deleted.

3 changes: 3 additions & 0 deletions tools/base/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
#
# pip-compile --allow-unsafe --generate-hashes tools/base/requirements.txt
#
aio.functional==0.0.4 \
--hash=sha256:e4293287491c4f592bcaad69eb2d75ebe988210314cc3dce5d5c61e8992471e0
# via -r tools/base/requirements.txt
colorama==0.4.4 \
--hash=sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b \
--hash=sha256:9f47eda37229f68eee03b24b9748937c7dc3868f906e8ba69fbcbdd3bc5dc3e2
Expand Down
Loading