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
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
Pierre Riteau
41b65161bd
Fix typos: s/the the/the/ ( #10867 )
2025-09-30 21:17:01 +02:00
Alexei Znamensky
14f13daa99
doc style adjustments: modules [jk]* ( #10420 )
...
* doc style adjustments: modules j*
* doc style adjustments: modules k*
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/keycloak_realm_key.py
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2025-07-18 01:22:59 +02:00
Alexei Znamensky
27c34b150f
jk*: style adjustments ( #9529 )
...
* jk*: style adjustments
* Apply suggestions from code review
* fix return yamls
2025-01-06 21:31:59 +01:00
Alexei Znamensky
49ed3d4acf
k*.py: normalize docs ( #9391 )
...
* k*.py: normalize docs
* Update plugins/modules/keycloak_realm_keys_metadata_info.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/kibana_plugin.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
2024-12-26 13:42:44 +01:00
alexander
3de4682193
krb_ticket: Create module ( #8953 )
...
* Add kutils module
* PR Fixes
* PR Fixes 2
* PR Fixes
* Fix executables
* Fix comment
* Fix functions
* PR Fix
* PR Fix 2
* Fix list name
* Fix list name 2
* Rever check_for_none func
* Rever check_for_none func 2
* Update tests
* Update tests 2
* Fix principal
* Fix cmdrunner args
* Fix multiline
* Fix backslash
* Fix tests
* Fix elif
* Fix bool arg
* Update doc
* Fix doc
* Add man reference
* Fix doc YAML-quoting
* PR Fixes
* Fix indent
* Fix version_added and name
* Fix units name
* Fix module name
2024-10-10 22:03:30 +02:00