1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-02 18:36:19 +00:00

replace redundant to_native()/to_text() occurrences, batch 7 (#11112)

* replace redundant to_native()/to_text() occurrences, batch 7

* add changelog frag

* made changes per review
This commit is contained in:
Alexei Znamensky 2025-11-13 10:38:29 +13:00 committed by GitHub
parent 996d9a7f63
commit f5c2c8b9a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 41 additions and 38 deletions

View file

@ -58,7 +58,7 @@ class OcapiUtils:
use_proxy=True,
timeout=self.timeout,
)
data = json.loads(to_native(resp.read()))
data = json.loads(resp.read())
headers = {k.lower(): v for (k, v) in resp.info().items()}
except HTTPError as e:
return {"ret": False, "msg": f"HTTP Error {e.code} on GET request to '{uri}'", "status": e.code}
@ -88,7 +88,7 @@ class OcapiUtils:
timeout=self.timeout,
)
if resp.status != 204:
data = json.loads(to_native(resp.read()))
data = json.loads(resp.read())
else:
data = ""
headers = {k.lower(): v for (k, v) in resp.info().items()}