Coverage for gws-app/gws/plugin/mbtiles_layer/provider.py: 0%

8 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-16 22:59 +0200

1"""MBTiles provider.""" 

2 

3 

4import gws 

5 

6 

7class Config(gws.Config): 

8 """MBTiles provider configuration.""" 

9 

10 path: gws.FilePath 

11 """List of image file paths.""" 

12 

13 

14 

15class Object(gws.Node): 

16 path: str 

17 

18 def configure(self): 

19 self.path = self.cfg('path')