Coverage for src/debputy/types.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2024-04-07 12:14 +0200

1from typing import TypeVar, TYPE_CHECKING 

2 

3if TYPE_CHECKING: 

4 from debputy.plugin.api import VirtualPath 

5 from debputy.filesystem_scan import FSPath 

6 

7 

8VP = TypeVar("VP", "VirtualPath", "FSPath") 

9S = TypeVar("S", str, bytes)