Coverage for tests/codegen/generated/simple_import/imports/host.py: 83%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-02-20 16:25 +0000

1from abc import abstractmethod 

2from typing import Protocol 

3 

4class HostHost(Protocol): 

5 @abstractmethod 

6 def thunk(self) -> None: 

7 raise NotImplementedError 

8