Add return type for Docker container start (#11905)

This commit is contained in:
Adam Dangoor
2024-05-12 12:37:00 +01:00
committed by GitHub
parent bbad7f2f24
commit 488bc24c43

View File

@@ -47,7 +47,7 @@ class Container(Model):
def rename(self, name): ...
def resize(self, height, width): ...
def restart(self, **kwargs): ...
def start(self, **kwargs): ...
def start(self, **kwargs) -> None: ...
def stats(self, **kwargs): ...
def stop(self, **kwargs) -> None: ...
def top(self, **kwargs): ...