Add type hint to ShellProcessFixture.execute method

Change-Id: Ib82940c07d3afa331e787cdbf8a805830694bba9
This commit is contained in:
Federico Ressi 2021-06-16 14:21:53 +02:00
parent 770f3dab17
commit 4afd3d99d5
1 changed files with 1 additions and 1 deletions

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):