Felix Fontein
236b9c0e04
Sort imports with ruff check --fix ( #11400 )
...
Sort imports with ruff check --fix.
2026-01-09 07:40:58 +01:00
Felix Fontein
340ff8586d
Reformat everything.
2025-11-01 13:46:53 +01:00
Felix Fontein
0c5466de47
Cleanup: remove unicode prefix, remove explicit inheritance from object ( #11015 )
...
* Address UP025: remove unicode literals from strings.
* Address UP004: class inherits from 'object'.
2025-10-30 20:17:10 +01:00
Alexei Znamensky
0b6e99b28b
modules ip*: use f-strings ( #10968 )
...
* modules ip*: use f-strings
* add changelog frag
2025-10-25 02:54:37 +02: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
a36ad54b53
doc style adjustments: modules i* ( #10409 )
2025-07-14 15:14:20 +02:00
Alexei Znamensky
a99f72fc36
[ip ... j]*.py: normalize docs ( #9392 )
...
* [ip ... j]*.py: normalize docs
* Update plugins/modules/ip_netns.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2024-12-26 13:40:05 +01:00
alexander
195ae4afde
ipa_getkeytab: Fix example task ( #9104 )
...
Fix ipa_getkeytab example task
2024-11-08 23:07:58 +01:00
alexander
1d86d49688
ipa_getkeytab: Create module ( #8938 )
...
* Add ipa_getkeytab
* Parameters fix
* PR fixes
* PR fixes 2
* Fix unit tests
* Fix doc and unit tests
* Fix doc
* Fix doc 2
* Fix doc 3
* PR fixes
* PR fixes 2
* Fix name
* Fix description typo
* Fix variable names
* Update tests
* Add man reference
2024-10-07 22:12:06 +02:00