Skip to content

Commit

Permalink
Remove py310-ism
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Oct 10, 2023
1 parent 4a3bce9 commit 352a2a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
from typing import Dict, Optional
from pathlib import Path
import socket
import random
Expand Down Expand Up @@ -39,9 +40,9 @@ def docker_client():

def build_and_launch_container(
docker_client: docker.client.DockerClient,
dockerfile: os.PathLike | None = None,
dockerfile: Optional[os.PathLike] = None,
image_name: str | None = None,
ports: dict[str, int] | None = None,
ports: Dict[str, int] | None = None,
):
"""Builds and/or launches a container, returning the container object.
Expand Down

0 comments on commit 352a2a8

Please sign in to comment.