mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Removed enumerate
This commit is contained in:
parent
543ad6b84d
commit
a03a1c6b56
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class Tracking(Configs):
|
||||||
print(f"The list below shows the packages with dependencies:\n")
|
print(f"The list below shows the packages with dependencies:\n")
|
||||||
|
|
||||||
char = f' {self.llc}{self.hl}'
|
char = f' {self.llc}{self.hl}'
|
||||||
for i, package in enumerate(packages):
|
for package in packages:
|
||||||
requires = Requires(package).resolve()
|
requires = Requires(package).resolve()
|
||||||
how_many = len(requires)
|
how_many = len(requires)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue