from typing import Iterator, TextIO import pytest @pytest.fixture() def mypy_correct() -> Iterator[TextIO]: with open('file.txt', 'wt') as file: yield file ...
確定! 回上一頁