mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-05 08:46:20 +01:00
Fixed for type hints
This commit is contained in:
parent
5b3683b5a2
commit
97e75b5f98
1 changed files with 3 additions and 3 deletions
|
@ -141,7 +141,7 @@ class Upgrade(Configs):
|
|||
repo_version: str = data[name]['version']
|
||||
repo_build: str = data[name]['build']
|
||||
|
||||
found_packages[self.id]: dict = {
|
||||
found_packages[self.id] = {
|
||||
'name': name,
|
||||
'inst_version': inst_version,
|
||||
'inst_build': inst_build,
|
||||
|
@ -159,7 +159,7 @@ class Upgrade(Configs):
|
|||
inst_version: str = self.utils.split_package(installed.name)['version']
|
||||
inst_build: str = self.utils.split_package(installed.name)['build']
|
||||
|
||||
found_packages[self.id]: dict = {
|
||||
found_packages[self.id] = {
|
||||
'name': name,
|
||||
'inst_version': inst_version,
|
||||
'inst_build': inst_build,
|
||||
|
@ -179,7 +179,7 @@ class Upgrade(Configs):
|
|||
repo_version: str = data[name]['version']
|
||||
repo_build: str = data[name]['build']
|
||||
|
||||
found_packages[self.id]: dict = {
|
||||
found_packages[self.id] = {
|
||||
'name': name,
|
||||
'inst_version': '',
|
||||
'inst_build': '',
|
||||
|
|
Loading…
Add table
Reference in a new issue