1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-06 10:05:54 +00:00

Cleanup: remove unicode prefix, remove explicit inheritance from object (#11015)

* Address UP025: remove unicode literals from strings.

* Address UP004: class inherits from 'object'.
This commit is contained in:
Felix Fontein 2025-10-30 20:17:10 +01:00 committed by GitHub
parent f61847b116
commit 0c5466de47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
242 changed files with 329 additions and 331 deletions

View file

@ -92,7 +92,7 @@ def session_method_wrapper(f):
return _wrap
class _ServiceClient(object):
class _ServiceClient:
def __init__(self, client, endpoint, product):
self._client = client
self._endpoint = endpoint
@ -140,7 +140,7 @@ class _ServiceClient(object):
return header
class Config(object):
class Config:
def __init__(self, module, product):
self._project_client = None
self._domain_client = None
@ -252,7 +252,7 @@ class HwcModule(AnsibleModule):
super(HwcModule, self).__init__(*args, **kwargs)
class _DictComparison(object):
class _DictComparison:
''' This class takes in two dictionaries `a` and `b`.
These are dictionaries of arbitrary depth, but made up of standard
Python types only.