]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: reformat Python file with black
authorAndrew Burgess <aburgess@redhat.com>
Wed, 4 Sep 2024 16:53:38 +0000 (17:53 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Wed, 4 Sep 2024 16:53:38 +0000 (17:53 +0100)
Fix formatting of a Python file added in commit:

  commit a92e943014f5e8d6a2eaccaf8a725941ac47a121
  Date:   Wed Aug 14 15:16:46 2024 +0100

      gdb: implement ::re_set method for catchpoint class

No functional change after this commit.

gdb/testsuite/gdb.base/reset-catchpoint-cond.py

index 87b374c201ed6fc82014520c94bfde46818e5759..bf90ec8ef6929a6b3566ade58542d4c8ee3873ac 100644 (file)
@@ -15,7 +15,9 @@
 
 bp_modified_list = []
 
+
 def bp_modified(bp):
-    bp_modified_list.append (bp.number)
+    bp_modified_list.append(bp.number)
+
 
 gdb.events.breakpoint_modified.connect(bp_modified)