mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-06-14 11:57:40 +00:00
[PR #12252/763ae7b1 backport][stable-13] Fix wrong typing import (#12257)
Fix wrong typing import (#12252)
Fix typing import.
(cherry picked from commit 763ae7b1e1)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
4d2ac82423
commit
694f2373a4
1 changed files with 2 additions and 2 deletions
|
|
@ -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]] = []
|
||||
|
||||
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue