mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +01:00
Updated for type hints
This commit is contained in:
parent
d346c0e89e
commit
bc25a0af53
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ class CheckUpdates(Configs):
|
||||||
__slots__ = 'flags', 'repo'
|
__slots__ = 'flags', 'repo'
|
||||||
super(Configs, self).__init__()
|
super(Configs, self).__init__()
|
||||||
self.flags: list = flags
|
self.flags: list = flags
|
||||||
self.repo = repo
|
self.repo: str = repo
|
||||||
self.utils = Utilities()
|
self.utils = Utilities()
|
||||||
self.progress = ProgressBar()
|
self.progress = ProgressBar()
|
||||||
self.repos = Repositories()
|
self.repos = Repositories()
|
||||||
|
|
Loading…
Add table
Reference in a new issue