diff options
| author | 2024-03-29 19:18:04 +0800 | |
|---|---|---|
| committer | 2024-03-29 19:18:04 +0800 | |
| commit | e9a11bb9b9408fb3dcae852a1597da5910bb1053 (patch) | |
| tree | 789b8023be69d1543175302db3c3dc65565b61a8 | |
| parent | d9091851aaecee7a32bb0f654ec2b77798223eda (diff) | |
| download | ipm-e9a11bb9b9408fb3dcae852a1597da5910bb1053.tar.gz ipm-e9a11bb9b9408fb3dcae852a1597da5910bb1053.zip | |
perf(ipk): imporve anncation declearation
| -rw-r--r-- | src/ipm/models/ipk.py | 2 |
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 |
