From 694f2373a4687595048ed376ee192b1333aa8fb8 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 21:29:31 +0200 Subject: [PATCH] [PR #12252/763ae7b1 backport][stable-13] Fix wrong typing import (#12257) Fix wrong typing import (#12252) Fix typing import. (cherry picked from commit 763ae7b1e1d3366068fffc2d71560c78b9b576b6) Co-authored-by: Felix Fontein --- tests/unit/plugins/modules/gitlab.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/plugins/modules/gitlab.py b/tests/unit/plugins/modules/gitlab.py index 18d70c3403..8b5d133c64 100644 --- a/tests/unit/plugins/modules/gitlab.py +++ b/tests/unit/plugins/modules/gitlab.py @@ -5,8 +5,8 @@ from __future__ import annotations import json +import typing as t import unittest -from typing import Any from unittest.mock import Mock import gitlab @@ -45,7 +45,7 @@ def python_gitlab_version_match_requirement(): deleted_user_key_ids: list[str] = [] -created_user_keys: list[dict[str, Any]] = [] +created_user_keys: list[dict[str, t.Any]] = [] """