According to black 23, gdb/printing.py was mis-formatted. This patch
fixes it.
class NoOpScalarPrinter:
"""A no-op pretty printer that wraps a scalar value."""
+
def __init__(self, value):
self.value = value
class NoOpArrayPrinter:
"""A no-op pretty printer that wraps an array value."""
+
def __init__(self, value):
self.value = value
(low, high) = self.value.type.range()
class NoOpStructPrinter:
"""A no-op pretty printer that wraps a struct or union value."""
+
def __init__(self, value):
self.value = value