1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 05:09:12 +00:00

fixup: license header and Python2isms

Remove obvious Python2isms. If I missed something, a list of things to
avoid would be appreciated.
This commit is contained in:
Eero Aaltonen 2026-03-01 23:12:54 +02:00
parent e301eb11c2
commit 8a38027c40
2 changed files with 4 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# Copyright: (c) 20252026, Eero Aaltonen
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations

View file

@ -1,13 +1,8 @@
# -*- coding: utf-8 -*-
# Copyright: (c) 20252026, Eero Aaltonen
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# This module is implemented as an action plugin and runs on the controller
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
from __future__ import annotations
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
DOCUMENTATION = r"""
---