[OBV/PATCH,gdb/obvious] : fix python formatting for test gdb.python/py-typeprint.py

Message ID 20230313154138.123200-1-blarsen@redhat.com
State New
Headers
Series [OBV/PATCH,gdb/obvious] : fix python formatting for test gdb.python/py-typeprint.py |

Commit Message

Guinevere Larsen March 13, 2023, 3:41 p.m. UTC
  python black formatter was complaining about the formatting of
gdb.python/py-typeprint.py, so this commit corrects it.
---
 gdb/testsuite/gdb.python/py-typeprint.py | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
  

Patch

diff --git a/gdb/testsuite/gdb.python/py-typeprint.py b/gdb/testsuite/gdb.python/py-typeprint.py
index aac42a1a99a..899650b45bd 100644
--- a/gdb/testsuite/gdb.python/py-typeprint.py
+++ b/gdb/testsuite/gdb.python/py-typeprint.py
@@ -15,6 +15,7 @@ 
 
 import gdb
 
+
 class StringRecognizer(object):
     def __init__(self):
         self.enabled = True
@@ -36,22 +37,26 @@  class StringTypePrinter(object):
 
 gdb.type_printers.append(StringTypePrinter())
 
+
 class OtherRecognizer(object):
     def __init__(self):
         self.enabled = True
 
     def recognize(self, type_obj):
-        if type_obj.tag == 'Other':
-            return 'Another'
+        if type_obj.tag == "Other":
+            return "Another"
         return None
 
+
 class OtherTypePrinter(object):
     def __init__(self):
-        self.name = 'other'
+        self.name = "other"
         self.enabled = True
 
     def instantiate(self):
         return OtherRecognizer()
 
+
 import gdb.types
+
 gdb.types.register_type_printer(gdb.objfiles()[0], OtherTypePrinter())