Verified Commit 45203873 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix for Python 3.10 issue with annotations

parent ebc99895
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -70,9 +70,10 @@ Volumes = MutableSequence[Mount]

IPAddress = Union[ipaddress.IPv4Address, ipaddress.IPv6Address]

DOCKER: Argument
match which("docker"):
	case None:
		DOCKER: Argument = DownloadableDocker().get_binary()
		DOCKER = DownloadableDocker().get_binary()
	case str(path):
		DOCKER = Path(path)