diff options
author | Matt Clay <matt@mystile.com> | 2023-10-05 00:11:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 00:11:17 +0200 |
commit | 9f899f94924fafeb330b1e8b18c970742da56e0d (patch) | |
tree | f0f250716e1b190097ac289b5657b5dfd058389a /test/integration/targets/templating_lookups | |
parent | ansible-test - Remove more Python 2.7 / 3.6 support (#81898) (diff) | |
download | ansible-9f899f94924fafeb330b1e8b18c970742da56e0d.tar.xz ansible-9f899f94924fafeb330b1e8b18c970742da56e0d.zip |
Require `from __future__ import annotations` (#81902)
Diffstat (limited to 'test/integration/targets/templating_lookups')
-rw-r--r-- | test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py b/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py index 436ceaf391..99a44adf52 100644 --- a/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py +++ b/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from ansible.plugins.lookup import LookupBase |