aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author苏向夜 <fu050409@163.com>2024-03-29 19:18:04 +0800
committer苏向夜 <fu050409@163.com>2024-03-29 19:18:04 +0800
commite9a11bb9b9408fb3dcae852a1597da5910bb1053 (patch)
tree789b8023be69d1543175302db3c3dc65565b61a8
parentd9091851aaecee7a32bb0f654ec2b77798223eda (diff)
downloadipm-e9a11bb9b9408fb3dcae852a1597da5910bb1053.tar.gz
ipm-e9a11bb9b9408fb3dcae852a1597da5910bb1053.zip
perf(ipk): imporve anncation declearation
-rw-r--r--src/ipm/models/ipk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipm/models/ipk.py b/src/ipm/models/ipk.py
index ac3315e..db98eb4 100644
--- a/src/ipm/models/ipk.py
+++ b/src/ipm/models/ipk.py
@@ -163,7 +163,7 @@ class InfiniProject(InfiniPackage):
return self._data["project"]["license"] # type: ignore
@property
- def dependencies(self) -> Dict[str, Any]:
+ def dependencies(self) -> Dict[str, str]:
return self._data.get("dependencies", {}) # type: ignore
@property