aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/ipm/typing.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ipm/typing.py b/src/ipm/typing.py
index f800273..45591ed 100644
--- a/src/ipm/typing.py
+++ b/src/ipm/typing.py
@@ -8,8 +8,8 @@ from typing import (
)
StrPath = str | Path
-Index = Dict[Literal["index", "host", "uuid"]]
+Index = Dict[Literal["index", "host", "uuid"], str]
Package = Dict[
- Literal["name", "version", "description", "requirements", "dependencies"]
+ Literal["name", "version", "description", "requirements", "dependencies"], str
]
-Storage = Dict[Literal["name", "version", "hash", "source"]]
+Storage = Dict[Literal["name", "version", "hash", "source"], str]