diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:16:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-05 16:16:49 +0000 |
commit | 48e387c5c12026a567eb7b293a3a590241c0cecb (patch) | |
tree | 80f2573be2d7d534b8ac4d2a852fe43f7ac35324 /test/integration/targets/group | |
parent | Releasing progress-linux version 2.16.6-1~progress7.99u1. (diff) | |
download | ansible-core-48e387c5c12026a567eb7b293a3a590241c0cecb.tar.xz ansible-core-48e387c5c12026a567eb7b293a3a590241c0cecb.zip |
Merging upstream version 2.17.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/integration/targets/group')
-rw-r--r-- | test/integration/targets/group/files/get_free_gid.py | 3 | ||||
-rw-r--r-- | test/integration/targets/group/files/get_gid_for_group.py | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/integration/targets/group/files/get_free_gid.py b/test/integration/targets/group/files/get_free_gid.py index 4c07b5e..155254d 100644 --- a/test/integration/targets/group/files/get_free_gid.py +++ b/test/integration/targets/group/files/get_free_gid.py @@ -1,6 +1,5 @@ -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import grp diff --git a/test/integration/targets/group/files/get_gid_for_group.py b/test/integration/targets/group/files/get_gid_for_group.py index 5a8cc41..ce35739 100644 --- a/test/integration/targets/group/files/get_gid_for_group.py +++ b/test/integration/targets/group/files/get_gid_for_group.py @@ -1,6 +1,5 @@ -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import grp import sys |