Removed enumerate

This commit is contained in:
Dimitris Zlatanidis 2023-01-17 01:06:04 +02:00
parent 543ad6b84d
commit a03a1c6b56

View file

@ -25,7 +25,7 @@ class Tracking(Configs):
print(f"The list below shows the packages with dependencies:\n")
char = f' {self.llc}{self.hl}'
for i, package in enumerate(packages):
for package in packages:
requires = Requires(package).resolve()
how_many = len(requires)