Added generic typing to configuration #141

This commit is contained in:
2022-12-07 13:06:50 +01:00
parent 68e01afb5b
commit 6d2492c1cf
3 changed files with 10 additions and 7 deletions

3
src/cpl_core/typing.py Normal file
View File

@@ -0,0 +1,3 @@
from typing import TypeVar
T = TypeVar('T')