Felix Fontein
340ff8586d
Reformat everything.
2025-11-01 13:46:53 +01:00
Felix Fontein
8f8a0e1d7c
Fix __future__ imports, __metaclass__ = type, and remove explicit UTF-8 encoding statement for Python files ( #10886 )
...
* Adjust all __future__ imports:
for i in $(grep -REl "__future__.*absolute_import" plugins/ tests/); do
sed -e 's/from __future__ import .*/from __future__ import annotations/g' -i $i;
done
* Remove all UTF-8 encoding specifications for Python source files:
for i in $(grep -REl '[-][*]- coding: utf-8 -[*]-' plugins/ tests/); do
sed -e '/^# -\*- coding: utf-8 -\*-/d' -i $i;
done
* Remove __metaclass__ = type:
for i in $(grep -REl '__metaclass__ = type' plugins/ tests/); do
sed -e '/^__metaclass__ = type/d' -i $i;
done
2025-10-10 19:52:04 +02:00
Alexei Znamensky
736ce1983d
arg_spec adjustments: modules [a-f]* ( #10494 )
...
* arg_spec adjustments: modules [a-f]*
* add changelog frag
* Update changelogs/fragments/10494-rfdn-1.yml
Co-authored-by: Felix Fontein <felix@fontein.de >
---------
Co-authored-by: Felix Fontein <felix@fontein.de >
2025-07-28 18:44:25 +02:00
Alexei Znamensky
7a4448d45c
doc style adjustments: modules [ab]* ( #10350 )
...
* doc style adjustments: modules [ab]*
* Update plugins/modules/btrfs_subvolume.py
* Update plugins/modules/aerospike_migrations.py
Co-authored-by: Felix Fontein <felix@fontein.de >
* Update plugins/modules/aix_filesystem.py
Co-authored-by: Felix Fontein <felix@fontein.de >
* Update plugins/modules/bigpanda.py
Co-authored-by: Felix Fontein <felix@fontein.de >
* aix_filesystems: roll back wording for `filesystem` description
---------
Co-authored-by: Felix Fontein <felix@fontein.de >
2025-07-07 20:50:35 +02:00
Alexei Znamensky
2a2a9661d9
[ab]*.py: normalize docs ( #9421 )
...
* [ab]*.py: normalize docs
* Update plugins/modules/atomic_image.py
Co-authored-by: Felix Fontein <felix@fontein.de >
---------
Co-authored-by: Felix Fontein <felix@fontein.de >
2024-12-27 14:29:15 +01:00
Ryan Cook
1a8f172186
Introduce bootc functionality ( #8606 )
...
* introduce bootc functionality
Signed-off-by: Ryan Cook <rcook@redhat.com >
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com >
* fix of test
Signed-off-by: Ryan Cook <rcook@redhat.com >
* switch stdout var
Signed-off-by: Ryan Cook <rcook@redhat.com >
* Feedback on NOTE format
Co-authored-by: Felix Fontein <felix@fontein.de >
* addition of trailing comma
Co-authored-by: Felix Fontein <felix@fontein.de >
* addition of trailing comma
Co-authored-by: Felix Fontein <felix@fontein.de >
* incorporating feedback from russoz
Signed-off-by: Ryan Cook <rcook@redhat.com >
* error in stdout
Signed-off-by: Ryan Cook <rcook@redhat.com >
* proper rc checking and status
Signed-off-by: Ryan Cook <rcook@redhat.com >
* linting
Signed-off-by: Ryan Cook <rcook@redhat.com >
* Update version
Co-authored-by: Felix Fontein <felix@fontein.de >
---------
Signed-off-by: Ryan Cook <rcook@redhat.com >
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com >
Co-authored-by: Felix Fontein <felix@fontein.de >
2024-07-27 09:37:14 +02:00