temp hack for failing flake8 check

This is temporary to get us moved over to ruff and pre-commit but it is
currently failing on the master branch.

Change-Id: Ie806224013b4342007d0aab3ba83720501be0ee7
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
This commit is contained in:
Doug Goldstein
2025-02-02 11:14:20 -05:00
parent 50d9101499
commit 9abf26ba68

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}\",')
print(f' \"name\": \"{sample.name}\",') # noqa
print(' \"labels\": %s,' % json.dumps(sample.labels))
print(f' \"value\": {sample.value},')
print(f' \"docs\": \"{entry.documentation}\",')
print(f' \"value\": {sample.value},') # noqa
print(f' \"docs\": \"{entry.documentation}\",') # noqa
print(f' \"type\": \"{entry.type}\"')
print(' },')
else: