from typing import Protocol class TestRepository(Protocol): def save(self) -> None: ... def test(self) -> str: ...