Revert "temp hack for failing flake8 check"

This reverts commit 9abf26ba68. Now that
we've switched to ruff and pre-commit we do not need this.

Change-Id: I6a9e3b07551a253f34819a086d6ab871bb5377fb
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein
2025-02-02 18:21:54 -05:00
parent 733d94088c
commit 9d094ee9f8

View File

@@ -74,10 +74,10 @@ class TestIronicPayloadParser(unittest.TestCase):
# from the prometheus client registry collection object.
if DUMP_JSON:
print(' {')
print(f' \"name\": \"{sample.name}\",') # noqa
print(f' \"name\": \"{sample.name}\",')
print(' \"labels\": %s,' % json.dumps(sample.labels))
print(f' \"value\": {sample.value},') # noqa
print(f' \"docs\": \"{entry.documentation}\",') # noqa
print(f' \"value\": {sample.value},')
print(f' \"docs\": \"{entry.documentation}\",')
print(f' \"type\": \"{entry.type}\"')
print(' },')
else: