From de99af24501dd95b51bbc3947cb0a23135eef414 Mon Sep 17 00:00:00 2001 From: Ismail Ibrahim Quwarah Date: Tue, 25 Jun 2024 10:04:39 +0200 Subject: [PATCH] Add missing quotation marks --- tmt/steps/prepare/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmt/steps/prepare/__init__.py b/tmt/steps/prepare/__init__.py index f498b53eb9..9276a6f6d5 100644 --- a/tmt/steps/prepare/__init__.py +++ b/tmt/steps/prepare/__init__.py @@ -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)