community.docker/plugins/module_utils/_api/api
Felix Fontein 741c318b1d
Python code modernization, 2/n (#1156)
* 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

* Reformat.
2025-10-09 20:46:48 +02:00
..
client.py Python code modernization, 2/n (#1156) 2025-10-09 20:46:48 +02:00
daemon.py Python code modernization, 2/n (#1156) 2025-10-09 20:46:48 +02:00