Commit a8f5b750 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Make Container.__init__() arguments keyword-only

Makes all the arguments after "cmd" keyword-only arguments.

Closes #15
parent 0703c187
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -244,7 +244,7 @@ class Container(Item):
	def __init__(
		self,
		image: Image,
		cmd: Arguments = [],
		cmd: Arguments = [], *,
		volumes: Volumes = [],
		env: Environ = {},
		network: Network|None = None,