Coverage for tests/codegen/generated/two_exports/imports/i.py: 78%

9 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 HostI(Protocol): 

5 @abstractmethod 

6 def f1(self) -> None: 

7 raise NotImplementedError 

8 @abstractmethod 

9 def f2(self) -> None: 

10 raise NotImplementedError 

11