Skip to content

Commit ff8b217

Browse files
fix typing issue
1 parent fc5f459 commit ff8b217

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/testcontainers/core/container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def with_bind_ports(self, container: Union[str, int], host: Optional[Union[str,
8383
self.ports[container] = host
8484
return self
8585

86-
def with_exposed_ports(self, *ports: tuple[Union[str, int], ...]) -> Self:
86+
def with_exposed_ports(self, *ports: Union[str, int]) -> Self:
8787
"""
8888
Expose ports from the container without binding them to the host.
8989

0 commit comments

Comments
 (0)