Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/fastavro/repository/base.py: 75%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

8 statements  

1from abc import ABC, abstractmethod 

2 

3 

4class SchemaRepositoryError(Exception): 

5 pass 

6 

7 

8class AbstractSchemaRepository(ABC): 

9 @abstractmethod 

10 def load(self, name): 

11 pass