Coverage for wasmtime/bindgen/generated/imports/environment.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 List, Protocol, Tuple 

3 

4class HostEnvironment(Protocol): 

5 @abstractmethod 

6 def get_environment(self) -> List[Tuple[str, str]]: 

7 raise NotImplementedError 

8