Skip to content

Commit

Permalink
Add missing quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
Ismail Ibrahim Quwarah committed Jun 25, 2024
1 parent 9413a67 commit de99af2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tmt/steps/prepare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ def as_key(self) -> frozenset['tmt.base.DependencySimple']:
# 2. group guests with same requirements.
from tmt.steps.prepare.install import _RawPrepareInstallStepData

pruned_requires: dict[frozenset['tmt.base.DependencySimple'], DependencyCollection] = {}
pruned_recommends: dict[frozenset['tmt.base.DependencySimple'], DependencyCollection] = {}
pruned_requires: dict[frozenset[tmt.base.DependencySimple], DependencyCollection] = {}
pruned_recommends: dict[frozenset[tmt.base.DependencySimple], DependencyCollection] = {}

for guest, collection in collected_requires.items():
collection.dependencies = uniq(collection.dependencies)
Expand Down

0 comments on commit de99af2

Please sign in to comment.