mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Fixed type hinting
This commit is contained in:
parent
00b621d86b
commit
6ab2e73288
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class Utilities(Configs):
|
||||||
self.stdout = None
|
self.stdout = None
|
||||||
self.prog_version = Version()
|
self.prog_version = Version()
|
||||||
|
|
||||||
self.installed_packages: dict[str] = dict(self.all_installed())
|
self.installed_packages: dict = dict(self.all_installed())
|
||||||
self.process_log_date = LoggingConfig.date.replace('/', '_')
|
self.process_log_date = LoggingConfig.date.replace('/', '_')
|
||||||
self.process_log_time = LoggingConfig.time.replace(':', '_')
|
self.process_log_time = LoggingConfig.time.replace(':', '_')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue