Coverage for tests/codegen/generated/external_types/imports/host.py: 88%

8 statements  

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

1from ..imports import types 

2from abc import abstractmethod 

3from typing import Protocol 

4 

5RuntimeValue = types.RuntimeValue 

6class HostHost(Protocol): 

7 @abstractmethod 

8 def some_fn(self, v: RuntimeValue) -> RuntimeValue: 

9 raise NotImplementedError 

10