Merge "Add type hint to ShellProcessFixture.execute method"

This commit is contained in:
Zuul
2021-06-16 16:43:30 +00:00
committed by Gerrit Code Review

View File

@@ -103,7 +103,7 @@ class ShellProcessFixture(tobiko.SharedFixture):
def init_parameters(self, **kwargs) -> ShellProcessParameters:
return ShellProcessParameters(**kwargs)
def execute(self):
def execute(self) -> 'ShellProcessFixture':
return tobiko.setup_fixture(self)
def setup_fixture(self):