Skip to content

Commit fcdd367

Browse files
committed
Remove type annotation.
1 parent 1a6afc6 commit fcdd367

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/testcontainers/core/waiting_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import wrapt
2020

21-
from .import container
2221
from testcontainers.core import config
2322
from testcontainers.core.exceptions import TimeoutException
2423
from testcontainers.core.utils import setup_logger
@@ -42,7 +41,7 @@ def wait_container_is_ready(*transient_exceptions):
4241
transient_exceptions = TRANSIENT_EXCEPTIONS + tuple(transient_exceptions)
4342

4443
@wrapt.decorator
45-
def wrapper(wrapped, instance: "container.DockerContainer", args, kwargs):
44+
def wrapper(wrapped, instance, args, kwargs):
4645
exception = None
4746
logger.info("Waiting for container %s with image %s to be ready...", instance._container,
4847
instance.image)

0 commit comments

Comments
 (0)