1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 11:39:02 +00:00

Fix wrong typing import (#12252)

Fix typing import.
This commit is contained in:
Felix Fontein 2026-06-13 19:53:20 +02:00 committed by GitHub
parent 5be28987b5
commit 763ae7b1e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]] = []
"""