summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py')
-rw-r--r--test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py b/test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py
index 77ee4a42e5..4d6b469ee9 100644
--- a/test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py
+++ b/test/lib/ansible_test/_internal/commands/coverage/analyze/targets/missing.py
@@ -67,7 +67,7 @@ def command_coverage_analyze_targets_missing(args: CoverageAnalyzeTargetsMissing
def find_gaps(
from_data: IndexedPoints,
- from_index: t.List[str],
+ from_index: list[str],
to_data: IndexedPoints,
target_indexes: TargetIndexes,
only_exists: bool,
@@ -92,9 +92,9 @@ def find_gaps(
def find_missing(
from_data: IndexedPoints,
- from_index: t.List[str],
+ from_index: list[str],
to_data: IndexedPoints,
- to_index: t.List[str],
+ to_index: list[str],
target_indexes: TargetIndexes,
only_exists: bool,
) -> IndexedPoints: