Skip to content

Commit 2982f7f

Browse files
committed
type fixes
1 parent c3993af commit 2982f7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pyff/test/test_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ def _capsys(self, capsys):
3131
@property
3232
def captured_stdout(self) -> str:
3333
""" Return anything written to STDOUT during this test """
34-
out, _err = self._capsys.readouterr()
34+
out, _err = self._capsys.readouterr() # type: ignore
3535
return out
3636

3737
@property
3838
def captured_stderr(self) -> str:
3939
""" Return anything written to STDERR during this test """
40-
_out, err = self._capsys.readouterr()
40+
_out, err = self._capsys.readouterr() # type: ignore
4141
return err
4242

4343
@pytest.fixture(autouse=True)
@@ -47,7 +47,7 @@ def _caplog(self, caplog):
4747

4848
@property
4949
def captured_log_text(self) -> str:
50-
return self._caplog.text
50+
return self._caplog.text # type: ignore
5151

5252
def run_pipeline(self, pl_name, ctx=None, md=None):
5353
if ctx is None:

0 commit comments

Comments
 (0)